/* Card Container Styles */
.data-card {
    background: white;
    border: 1px solid #e5e7eb; /* Light gray border */
    border-radius: 8px;
    padding: 12px;
    margin-top: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    font-size: 0.9em; /* Slightly smaller text for compact view */
    font-family: sans-serif;
}

/* Hover effect */
.data-card:hover {
    border-color: #2563eb; /* Blue border on hover */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Rows inside the card */
.data-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    border-bottom: 1px dashed #f0f0f0; /* Dashed separator */
    padding-bottom: 4px;
}

/* Remove border from the last row */
.data-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* The Label (e.g., "Order Date") */
.data-label {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.85em;
    text-transform: uppercase;
}

/* The Value (e.g., "2023-10-12") */
.data-value {
    font-weight: 500;
    color: #111827;
    text-align: right;
}

.login-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #dc2626; /* Red color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
}
.login-btn:hover {
    background-color: #b91c1c;
}