/*
Any k-* CSS needs to be defined in the main layout (or a global) CSS file.
This is because third-party Blazor components do not support scoped CSS
So we define the styles here to ensure they apply correctly.
*/

.k-card {
    /* background: rgba(30, 41, 59, 0.8) !important; */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 65, 85, 0.5) !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.k-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--kendo-color-secondary), var(--kendo-color-secondary-hover));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.k-card:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.k-card:hover::before {
    opacity: 1;
}

.k-notification {
    background: rgba(30, 41, 59, 0.95) !important;
    border: 1px solid rgba(51, 65, 85, 0.5) !important;
    color: #e2e8f0 !important;
}

.card-header {
    color: var(--kendo-color-on-app-surface);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.content-card {
    width: fit-content;
    padding: 20px; /* Add desired padding */
    min-width: 200px; /* Optional: set a minimum width */
} 