@import "tailwindcss";

html {
    font-family: "mono";
}

.individual-row {
            }

.lcGTable,
.mini-table {
    border-collapse: collapse;
    width: 100%;
}


.dashboard-summary-card {
      width: 250px;
}

.outer-heading-row,
.individual-data-h,
.individual-data {
    border: 1px solid;
    padding: 8px;
    text-align: center;
    border-color: #00ACC8;
}

.collective-data,
.inner-row,
.inner-heading-row,
.collective-data-h {
    border-bottom: 1px solid;
    padding: 8px;
    text-align: center;
    border-color: #00ACC8;
}

.collective-data:not(:last-child),
.collective-data-h:not(:last-child) {
    border-right: 1px dashed;
}

.table-header {
    background-color: #00ACC8;
    color: white;
    border: solid 1px white;
    font-weight: bold;
}

.alert {
    color: red;
}


.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid columns */
    gap: 20px; /* Space between grid items */
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.data-item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.data-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.data-value {
    color: #555;
}

.data-value.short {
    text-decoration: underline;
}

.data-value.long {
    font-style: italic;
}

.patient-view__tabs {
    align-self: center;
    padding: 4px;
}

.patient-view__content-wrapper {
    padding: 4px;
}

.main-layout__navbar {
    padding: 4px;
    justify-content: space-between;
}

.main-layout__drawer {
    padding: 8px;
    justify-content: space-between;
}

.dashboard-view__action-button {
    background-image: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%);
}

.dashboard-view__actions-container {
    justify-content: space-around;
    width : 100%;
}


.logo-image {
    height: 130px;
    width: 500px;
}

.logo-image-on-header {
height: 50px;
width: 180px;
}