body{

margin:0;

background:#111;

color:white;

font-family:Arial, sans-serif;

}





/* LEFT SIDEBAR */

.sidebar{

position:fixed;

left:0;

top:0;



width:220px;

background:#181818;

padding-top:30px;

display:flex;

flex-direction:column;

align-items:center;

box-shadow:2px 0 10px black;

}



.sidebar button{

width:180px;

padding:14px;

margin:8px;

background:#222;

color:white;

border:none;

border-radius:8px;

font-size:16px;

cursor:pointer;

transition:.3s;

}



.sidebar button:hover{

background:#e91e63;

}



.sidebar i{

margin-right:10px;

}



.sidebar hr{

width:80%;

border-color:#444;

}



.sidebar h3{

color:#ddd;

}




/* MAIN AREA */


.content {
    margin-left: 220px;
    width: calc(100% - 220px);
    height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 15px;
    box-sizing: border-box;
}

.video iframe{

    width:100%;
    height:100%;

    border:none;
    border-radius:12px;
}



h1{

    margin:0;
    padding:10px 0;

    font-size:32px;
}


p{

    margin:5px 0 15px 0;

    font-size:18px;
}

.payment-icon{

width:25px;

height:25px;

object-fit:contain;

vertical-align:middle;

margin-right:10px;

}

.payment-btn{

display:flex;

align-items:center;

justify-content:center;

gap:8px;

}

.bancobu-btn{

    width:180px;
    height:70px;

    background:#FFD700;
    border:none;
    border-radius:10px;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    padding:5px;
}

.payment-icons{

display:flex;

flex-direction:column;

align-items:center;

gap:12px;

}

.lumicash-btn{

    width:60px;
    height:60px;

    background:#FFD700 !important;
    color:#0057B8 !important;

    border:none;

    border-radius:10px;

    font-weight:bold;
    font-size:11px;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;
}

.bancobu-icon{

    max-width:100%;
    max-height:100%;

    object-fit:contain;

    display:block;
}


/* LOGIN AND SIGNUP PAGES */


.auth-page{

    background:white;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    font-family:Arial, sans-serif;

}



.auth-box{

    width:350px;

    padding:40px;

    background:white;

    border-radius:15px;

    box-shadow:0 5px 25px rgba(0,0,0,0.15);

    text-align:center;

}



.auth-box h2{

    margin-bottom:30px;

    color:#222;

    font-size:30px;

}



.auth-box input{

    width:100%;

    padding:14px;

    margin:10px 0;

    border:1px solid #ccc;

    border-radius:8px;

    font-size:16px;

    box-sizing:border-box;

}



.auth-box button{

    width:100%;

    padding:14px;

    margin-top:20px;

    background:#e91e63;

    color:white;

    border:none;

    border-radius:8px;

    font-size:17px;

    cursor:pointer;

}



.auth-box button:hover{

    background:#c2185b;

}



.auth-box a{

    color:#e91e63;

    text-decoration:none;

    font-weight:bold;

}

#message {
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
    min-height: 20px;
}

.plan-section {
    margin: 15px 0;
}

.plan-section label {
    color: white;
    display: block;
    margin-bottom: 8px;
}

.plan-section select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
}

.plan-section {
    margin-bottom: 10px;
}

.plan-select {
    width: 100%;
    padding: 12px;
    background-color: #007bff;   /* Same blue as Logout button */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}

.plan-select:hover {
    background-color: #0056b3;
}



.video video {
    display: block;
    object-fit: contain;
}

* {
    box-sizing: border-box;
}



#liveCamera {
    max-width: 100%;
    max-height: 100%;
}




body {
    margin:0;
    background:#111;
    color:white;
    font-family:Arial, sans-serif;
    height:100vh;
    overflow:hidden;
}


h1{
    margin:5px 0;
}

h2{
    margin:10px 0 5px;
}

p{
    margin:5px 0 10px;
}

.video {
    width:90%;
    max-width:900px;
    height:500px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:black;
    border-radius:12px;
    overflow:hidden;
}
#liveCamera{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
    border:none;
}
.video{
    position:relative;
    flex:1;
    width:100%;
    background:black;
    overflow:hidden;
    border-radius:12px;
}

#liveCamera{
    width:100%;
    height:100%;
    object-fit:contain;
}

.fullscreen-btn{

    position:absolute;
    top:15px;
    right:15px;

    width:45px;
    height:45px;

    border:none;
    border-radius:50%;

    background:rgba(0,0,0,0.6);
    color:white;

    cursor:pointer;

    font-size:18px;

    transition:0.3s;
}

.fullscreen-btn:hover{
    background:rgba(255,255,255,0.2);
}

.video {
    position: relative;
    display: inline-block;
}

.fullscreen-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
    cursor: pointer;
}

.plan-dropdown {
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.plan-dropdown > button {
    width:180px;
}
.plan-menu {
    display: none;
    background: white;
    border-radius: 5px;
    margin-top: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.plan-menu a {
    display: block;
    padding: 12px;
    text-decoration: none;
    color: black;
    background: white;
}

.plan-menu a:hover {
    background: #f0f0f0;
}

.sidebar {
    width:220px;
    overflow-x:hidden;
    box-sizing:border-box;
}

.plan-dropdown,
.subscription-menu,
#subscriptionPlans,
#otherButtons {
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
}


.sidebar button {
    width:180px;
    max-width:180px;
    box-sizing:border-box;
}


#subscriptionPlans button {
    width:160px;
    font-size:14px;
}


.bancobu-btn {
    width:180px;
    max-width:180px;
    overflow:hidden;
}


.bancobu-icon {
    max-width:100%;
    height:auto;
}

/* Subscription dropdown alignment */

#subscriptionPlans {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


#subscriptionPlans button {
    width: 160px;
    padding: 12px;
    margin: 6px 0;

    background:#222;
    color:white;

    border:none;
    border-radius:8px;

    font-size:14px;
    cursor:pointer;
}


#subscriptionPlans button:hover {
    background:#e91e63;
}
/* Fix subscription alignment */

.subscription-menu {
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
}


.subscription-menu > button {
    width:180px;
    margin:8px;
}


#subscriptionPlans {
    width:180px;
    display:flex;
    flex-direction:column;
    align-items:center;
}


#subscriptionPlans button {
    width:180px;
    margin:8px 0;
}

/* Align sidebar lower buttons */

#otherButtons {
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
}


#otherButtons > button {
    width:180px;
    margin:8px;
}


.payment-icons {
    width:180px;
    display:flex;
    justify-content:center;
    align-items:center;
}


/* Lumicash centered inside sidebar */
.lumicash-btn {
    width:180px;
    height:60px;
    margin:8px;
}


/* Bancobu centered */
.bancobu-btn {
    width:180px;
    height:70px;
    margin:8px;
}

/* FINAL SIDEBAR ALIGNMENT FIX */

.sidebar {
    width:220px;
    display:flex;
    flex-direction:column;
    align-items:center;
}


.sidebar > button {
    width:180px;
    margin:8px 0;
}


/* Subscription section */
.plan-dropdown,
.subscription-menu,
#subscriptionPlans,
#otherButtons {
    width:180px;
    display:flex;
    flex-direction:column;
    align-items:center;
}


.subscription-menu > button,
#otherButtons > button {
    width:180px;
    margin:8px 0;
}


/* Subscription plans */
#subscriptionPlans button {
    width:180px;
    margin:8px 0;
}


/* Replay button */
#otherButtons button {
    width:180px;
}


/* Payment area */
.payment-icons {
    width:180px;
    display:flex;
    justify-content:center;
    align-items:center;
}


.lumicash-btn {
    width:180px !important;
    height:60px;
    margin:8px 0 !important;
}


.bancobu-btn {
    width:180px !important;
    height:70px;
    margin:8px 0 !important;
}

