/* /assets/css/brs-frontend-style.css */

/* === Randevu Formu Stilleri === */
#brs-randevu-formu-wrapper {
    max-width: 550px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: rgba(255, 255, 255, 0.65); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px); 
    border-radius: 20px; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15); 
}
.brs-form-grup { margin-bottom: 18px; }
.brs-form-grup label {
    display: block;
    font-weight: 600; 
    margin-bottom: 8px;
    color: #333;
}
.brs-form-grup select, 
.brs-form-grup input[type="text"], 
.brs-form-grup input[type="tel"], 
.brs-form-grup input[type="email"], 
.brs-form-grup input[type="date"] {
    width: 100%;
    padding: 12px 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 10px; 
    background: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}
#brs-saatler-listesi { display: flex; flex-wrap: wrap; gap: 10px; }
.brs-saat-butonu {
    padding: 10px 15px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}
.brs-saat-butonu:hover { background: #e0e0e0; }
.brs-saat-butonu.selected {
    background: #007aff; 
    color: white;
    border-color: #007aff;
    font-weight: 600;
    transform: scale(1.05);
}
#brs-form-submit {
    width: 100%;
    padding: 15px;
    background: #34c759; 
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: background 0.2s ease;
}
#brs-form-submit:hover { background: #30b854; }
#brs-form-submit:disabled { background: #999; }
#brs-form-mesaj { margin: 15px 0; padding: 15px; display: none; border-radius: 10px; font-weight: 500; }
#brs-form-mesaj.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
#brs-form-mesaj.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }


/* === Çalışan Listesi Stilleri === */
.brs-calisan-listesi-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
    gap: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.brs-calisan-karti {
    text-align: center;
    background: rgba(255, 255, 255, 0.65); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.brs-calisan-karti img {
    width: 100px;
    height: 100px;
    border-radius: 50%; 
    object-fit: cover; 
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}
.brs-calisan-karti h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 5px 0 0 0;
}
.brs-calisan-karti p.brs-unvan {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin: 0;
    min-height: 1.2em; 
}


/* === Randevu Yönetim Stilleri === */
.brs-yonetim-wrapper {
    max-width: 550px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: rgba(255, 255, 255, 0.65); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px); 
    border-radius: 20px; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15); 
    color: #333;
}
.brs-yonetim-wrapper h2 { text-align: center; color: #333; margin-top: 0; }
.brs-yonetim-mesaj { margin: 15px 0; padding: 15px; border-radius: 10px; font-weight: 500; }
.brs-yonetim-mesaj.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.brs-yonetim-mesaj.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.brs-yonetim-mesaj.info { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.brs-yonetim-detaylar {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.brs-yonetim-detaylar p {
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.brs-yonetim-detaylar p:last-child { border-bottom: none; }
.brs-yonetim-detaylar strong {
    display: inline-block;
    width: 100px;
    font-weight: 600;
    color: #555;
}
.brs-yonetim-button {
    width: 100%;
    padding: 15px;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: background 0.2s ease;
    margin-top: 20px;
}
.brs-yonetim-button.cancel { background: #ff3b30; } 
.brs-yonetim-button.cancel:hover { background: #e03024; }
.brs-yonetim-button:disabled { background: #999; cursor: not-allowed; }