/* KISTAS License Authority - Portal Styles */

html, body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

/* Loading Screen */
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fafafa;
    z-index: 9999;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.loading-title {
    color: #1976d2;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin: 0;
}

.loading-text {
    color: #666;
    font-family: 'Roboto', sans-serif;
    margin-top: 8px;
}

/* Error UI */
#blazor-error-ui {
    background: #ffeb3b;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* Validation */
.validation-message {
    color: #d32f2f;
    font-size: 0.75rem;
}

/* Utility Classes */
.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.mt-16 {
    margin-top: 4rem;
}
