body {
    margin: 0;
    padding-left: 75px;
    padding-right: 75px;
    background-color: #000;
    font-family: 'Segoe UI', sans-serif;
    color: white;
}

.logo {
    font-size: 32px;
    color: #91ff6a;
    font-weight: bold;
    margin: 20px 40px;
    text-shadow: 0 0 10px #91ff6a;
}

.container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 250px 250px 250px;
    gap: 20px;
    padding: 20px 40px;
}

.box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #4c4c4c;
  border: 4px solid #7ca363; /* ou rouge si .red */
  border-radius: 20px;
  padding: 20px;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(124, 163, 99, 0.4);
}

/* Header */
.box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.box-header .label {
  font-size: 24px;
  font-weight: bold;
}

.status {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}

.green-status {
  background-color: #7ca363;
}

.red-status {
  background-color: #a34a4a;
}

/* Body */
.box-body {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Footer */
.box-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-footer .info {
  font-weight: bold;
  font-size: 14px;
}

.arrow {
  font-size: 26px;
  color: white;
}


.large {
    grid-column: span 2;
    grid-row: span 2;
}

.medium {
    grid-column: span 2;
    grid-row: span 1;
}

.small {
    grid-column: span 1;
    grid-row: span 1;
    font-size: 16px;
}
