.view-potwierdzenie-wizyty .header {
    display: flex;    
    justify-content: center;    
    font-size: 1.5em;
    color: var(--main-accent-color);
    font-family: Montserrat; 
    font-weight: 500;    
    text-align: center;
}
.view-potwierdzenie-wizyty .message {
    display: flex;    
    flex-direction: column;
    justify-content: center;        
    color: var(--main-lighter-color);    
    font-weight: 400;
    text-align: center;
    margin: 3em;
    font-size: 1.5em;
}
.view-potwierdzenie-wizyty .loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    border-radius: 8px;
    color: #555;
    font-size: 1.1em;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.view-potwierdzenie-wizyty .spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #007bff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}