/* ===== Base Styles ===== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* ===== Full-Screen Media Player (index.php) ===== */
body.media-player-page {
    overflow: hidden;
    height: 100%;
}

#media-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Form Pages (Login & Registration) ===== */
body.login-page,
body.registration-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

/* Full-Width Form Containers */
.login-container,
.registration-container {
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Full-Width Form Elements */
.login-container input,
.registration-container input,
.login-container select,
.registration-container select,
.login-container textarea,
.registration-container textarea {
    width: 100% !important;
    box-sizing: border-box;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* Full-Width Buttons */
.login-container button,
.registration-container button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
}

/* ===== Admin Pages ===== */
body.admin-page {
    overflow: auto;
}

/* ===== Tables ===== */
table {
    width: 100%;
    border-collapse: collapse;
}

/* ===== Buttons ===== */
.btn {
    width: auto;
    display: inline-block;
    padding: 10px 20px;
}

/* ===== Utility Classes ===== */
.full-width {
    width: 100%;
}

/* Hide scrollbar for media player only */
body.media-player-page::-webkit-scrollbar {
    display: none;
}
body.media-player-page {
    -ms-overflow-style: none;
    scrollbar-width: none;
}