/**
 * KAS Managed Websites plugin for KAS
 *
 * Prefix for all classes: kmw-
 */

.kmw-tabs {
  font-size: 16px;
}

/* Tile design for website summary */
.kmw-tile-rows {
  margin: 0 0 18px 0;
  padding: 0;
}
.kmw-tile-row {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: box-shadow 0.2s;
}
.kmw-tile-row:hover {
  background-color: #fafafa;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.kmw-tile-col {
  display: flex;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
}
.kmw-tile-status {
  font-weight: 600;
  font-size: 15px;
  background: #f4f8fb;
  border-radius: 999px;
  padding: 3px 12px;
  border: 1px solid #0a66c2;
  color: #0a66c2;
  display: inline-block;
  min-width: 70px;
  text-align: center;
}

@media (max-width: 900px) {
  .kmw-tile-row {
    flex-wrap: wrap;
    padding: 12px 8px;
  }
  .kmw-tile-col {
    width: 100% !important;
    margin-bottom: 8px;
    text-align: left !important;
  }
  .kmw-tile-col:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .kmw-tile-row {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 4px;
  }
  .kmw-tile-col {
    width: 100% !important;
    margin-bottom: 8px;
    text-align: left !important;
  }
  .kmw-tile-col:last-child {
    margin-bottom: 0;
  }
}