

/* Put Background image on login page */
.container_login {
    background: #eee url(/hms_plus/static/body_bg.png);
    height: 100%;
}
.oe_login_form {

	margin-top: 4%;
        margin-left: 14%;
}



.form-control { 



	width :57%

}
img#logo_img 

{

    margin-top: 42%;
    width: 45%;
    padding-left: 10%;

}

.color-N2 a{
    font-weight: 700;
    font-size: 15px;
    color: #ac047b!important;
}
.color-N1 a{
    font-weight: 700;
    font-size: 15px;
    color: #ffe002!important;
}
.color-p1 a{
    font-weight: 700;
    font-size: 15px;
    color: #ffa029!important;
}

.color-p2 a{
    font-weight: 700;
    font-size: 15px;
    color: #e82f2f!important;
}

.color-p3 a{
    font-weight: 700;
    font-size: 15px;
    color: #ac047b!important;
}

.color-p4 a{
    font-weight: 700;
    font-size: 15px;
    color: #7171ab!important;
}

.color-p5 a{
    font-weight: 700;
    font-size: 15px;
    color: #ff0d05!important;
}

.color-p6 a{
    color: #e24758!important;
    font-weight: 700;
    font-size: 15px;
}
.color-p7 a{
    color: #46bee4!important;
    font-weight: 700;
    font-size: 15px;
}
.color-p8 a{
    color: #E46F78!important;
    font-weight: 700;
    font-size: 15px;
}

.color-p9 a{
    font-weight: 700;
    font-size: 15px;
    color: #43ff05!important;
}

.color-p10 a{
    font-weight: 700;
    font-size: 15px;
    color: #058851!important;
}

.color-p11 a{
    font-weight: 700;
    font-size: 15px;
    color: #b97e7e!important;
}
/* Fichier: static/src/css/calendar_background.css */

/* Méthode 1: Background sur la vue calendrier complète */
.medical_calendar_with_bg {
    background-image: url('/your_module/static/src/img/medical_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Container pour wrapper */
.medical_calendar_container {
    position: relative;
    background-image: url('/your_module/static/src/img/medical_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Overlay semi-transparent pour améliorer la lisibilité */
.medical_calendar_with_bg::before,
.medical_calendar_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1); /* Overlay blanc semi-transparent */
    pointer-events: none;
    z-index: 1;
}

/* S'assurer que le contenu est au-dessus de l'overlay */
.medical_calendar_with_bg > *,
.medical_calendar_container > * {
    position: relative;
    z-index: 2;
}

/* Style spécifique pour les événements du calendrier médical */
.medical_calendar_with_bg .fc-event,
.medical_calendar_container .fc-event {
    background-color: rgba(52, 144, 220, 0.9) !important;
    border-color: rgba(52, 144, 220, 1) !important;
    color: white !important;
    border-radius: 6px;
    padding: 2px 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Style pour les badges dans le popup */
.medical_calendar_with_bg .badge,
.medical_calendar_container .badge {
    background-color: rgba(40, 167, 69, 0.9) !important;
    color: white !important;
}

/* Améliorer la lisibilité des popups */
.medical_calendar_with_bg .modal-content,
.medical_calendar_container .modal-content {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Style pour les images de patients dans le popup */
.medical_calendar_with_bg .o_field_image img,
.medical_calendar_container .o_field_image img {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive - adapter le background sur mobile */
@media (max-width: 768px) {
    .medical_calendar_with_bg,
    .medical_calendar_container {
        background-attachment: scroll;
        background-size: cover;
    }
}

/* Alternative: Background pattern médical */
.medical_pattern_bg {
    background-image:
        radial-gradient(circle at 25% 25%, rgba(52, 144, 220, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(40, 167, 69, 0.05) 2px, transparent 2px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
}

/* Style pour les headers de calendrier */
.medical_calendar_with_bg .fc-toolbar,
.medical_calendar_container .fc-toolbar {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.my-image-style img {
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-left: auto;
    margin-right: 0;
    display: block;
}