/* 
   OVERRIDE STYLES FOR DAHAD ACADEMY 
   Hiding features requested by user 
*/

/* Hide Share/Invite Buttons */
#shareButton,
#shareRoomPopup,
#shareOnJoinButton,
#sendEmailInvitation,
#inviteUserButton,
#chatShareRoomBtn,
/* Hide the chat invite button */
.fa-share-alt,
.fa-user-plus {
    display: none !important;
}

/* Hide AI Chat Buttons */
#chatGPT,
#deepSeek,
button[id*="chatGPT"],
button[id*="deepSeek"],
.fa-robot,
.fa-brain {
    display: none !important;
}

/* Hide About && Support */
#aboutButton,
#supportUs,
#sponsors,
#poweredBy,
.fa-question,
.fa-heart.heartbeat {
    display: none !important;
}

/* Hide "MiroTalk" branding text occurrences if they have identifiable classes */
.powered-by,
a[href*="mirotalk"],
a[href*="codecanyon"] {
    display: none !important;
}

#fileShareButton,
#sendFileButton,
#sendFileAllButton,
#tabVideoShareBtn,
#exitButton {
    display: none !important;
}

/* 
   BRANDING: Watermarks 
*/

/* 1. Loading Screen Watermark */
#loadingDiv {
    background-image: url('../images/dahad-logo.png') !important;
    background-repeat: no-repeat !important;
    background-position: center 20% !important;
    /* Position above the spinner */
    background-size: 150px auto !important;
    /* Adjust size as needed */
}

/* 2. Meeting Room Watermark */
/* We'll add it to the main video container or body */
body {
    background-image: url('../images/dahad-logo.png') !important;
    background-repeat: no-repeat !important;
    background-position: bottom 20px right 20px !important;
    /* Bottom right corner */
    background-size: 100px auto !important;
    /* Subtle watermark size */
    background-attachment: fixed !important;
}