.input-container{
    margin-top: 30%;
    margin-bottom: 8px;
}

.search-result{
    margin-top: 5%;
    padding: 5px;
}

.hidden {
    display: none; /* This will hide the elements with this class */
}



/*For when we have found cases*/
/* Cases container */
.cases-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    max-height: 400px;
    overflow-y: auto;
    padding: 4px;
}

/* Case card */
.case-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.case-card:hover {
    border-color: #999;
    background: #fafafa;
}

.case-card.selected {
    border-color: var(--primary-color);
    background: #f0f7ff;
    box-shadow: 0 0 0 3px var(--supp-color);
}

/* Case header */
.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.case-id {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}


/* Case body */
.case-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.case-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.info-label {
    color: #666;
}

.info-value {
    color: #333;
    font-weight: 500;
}