/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Generic card look */
.card {
  background: #fff;
  border-radius: 12px;           /* rounded corners */
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: 1.25rem;
  overflow: hidden;              /* clips child corners (e.g., images) */
}

/* Make the whole column behave like a same-height card in a row */
.dnd-row .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Optional: tidy images inside the card */
.card img {
  border-radius: 8px;            /* soft rounding for inline images */
  display: block;
  max-width: 100%;
}Start your style declarations here    */
/*****************************************/