.btn-outline-custom {
    color: #e83e8c;
    border-color: #e83e8c;
    background-color: transparent;
}

.btn-outline-custom:hover {
    background-color: #e83e8c;
    color: white;
}

.btn-outline-custom:active, .btn-outline-custom.active {
    background-color: #d63384;
    border-color: #d63384;
    color: white;
}

.btn-outline-custom:focus {
    box-shadow: 0 0 0 0.25rem rgba(232, 62, 140, 0.5);
}

.btn-custom {
    color: white;
    background-color: #e83e8c;
    border-color: #e83e8c;
}

.btn-custom:hover {
    background-color: #d63384;
    border-color: #d63384;
    color: white;
}

.btn-custom:active, .btn-custom.active {
    background-color: #c82333;
    border-color: #bd2130;
    color: white;
}

.btn-custom:focus {
    box-shadow: 0 0 0 0.25rem rgba(232, 62, 140, 0.5);
}

.bg-custom {
    background-color: #e83e8c !important;
    color: white !important;
}

.live-lamp {
    height: 15px;
    width: 15px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}

.live-lamp.live {
    background-color: red;
    box-shadow: 0 0 5px red;
}

.text-custom {
    color: #e83e8c !important;
}

.video-container {
    position: relative;
    width: 100%;
    background: black;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

#remoteVideo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

#localVideo {
    width: 100%;
    display: block;
    object-fit: cover;
    transform: scaleX(-1);
}

.chat-panel {
    height: 250px !important;
    display: flex;
    flex-direction: column;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 50vw;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1050;
    transition: right 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid #dee2e6;
}

.sidebar-overlay.show {
    right: 0;
}

.sidebar-content {
    height: 100%;
}

#toggleSidebar {
    transition: all 0.3s ease;
}

.toggle-btn.collapsed .toggle-show {
    display: none;
}

.toggle-btn:not(.collapsed) .toggle-hide {
    display: none;
}

#manualSettings .card {
    border-style: dashed;
    border-color: #e83e8c;
    background-color: #fff9fb;
}

#wcDeepLinkSection hr {
    margin: 1.5rem 0;
    opacity: 0.15;
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

body { background-color: #f8f9fa; }
.media-card {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 2px solid #e83e8c;
    border-radius: 8px;
    background: #000;
    margin-bottom: 20px;
}
.media-card img, .media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}
.video-overlay:hover {
    background: rgba(0,0,0,0.1);
}
.play-pause-btn {
    font-size: 3rem;
    color: #e83e8c;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: transform 0.2s;
}
.video-overlay:hover .play-pause-btn {
    transform: scale(1.1);
}
.navbar {
    border-bottom: 2px solid #e83e8c;
    background-color: white !important;
}
.navbar-brand {
    color: #e83e8c !important;
    font-weight: bold;
}
#loading {
    text-align: center;
    padding: 20px;
    color: #e83e8c;
}
.badge-outline-custom {
    color: #e83e8c;
    border: 1px solid #e83e8c;
    background-color: transparent;
}
