* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html, body {
        margin: 0;
        padding: 0;
        width: 100vw;
        overflow-x: hidden;
    }
    
    .in-play-section {
        width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        position: fixed !important;
        height: calc(100vh - 95px) !important;
        top: 95px !important;
    }
    
    .in-play-content {
        width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }
    
    .matches-container {
        width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .match-item {
        width: 100vw !important;
        margin: 0 !important;
        padding: 12px 15px !important;
        box-sizing: border-box !important;
    }
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent; /* Remove highlight color for touch devices */
    user-select: none; /* Prevent text selection */
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header-logo {
    max-height: 50px;
    width: auto;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}


.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: 20px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4682B4;
}

.user-info {
    color: #28a745;
    font-weight: 600;
    font-size: 14px;
}

.balance-info, .exposure-info {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 15px;
}

.balance-label, .exposure-label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.balance-amount {
    font-weight: 700;
    font-size: 16px;
    color: #28a745;
}

.exposure-amount {
    font-weight: 700;
    font-size: 16px;
    color: #dc3545;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .balance-label, .exposure-label {
        font-size: 12px;
    }
    
    .balance-amount, .exposure-amount {
        font-size: 14px;
    }
    
    .balance-info, .exposure-info {
        margin-left: 10px;
        gap: 3px;
    }
    
    .nav-list {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .balance-label, .exposure-label {
        font-size: 11px;
    }
    
    .balance-amount, .exposure-amount {
        font-size: 9px;
        margin-top: 8%;
    }
    
    .balance-info, .exposure-info {
        margin-left: 8px;
        gap: 2px;
    }
    
    .nav-list {
        justify-content: center;
        width: 100%;
        flex-wrap: nowrap;
        margin-left: -179px;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}


/* Flashing Message Styles */
.flashing-message {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #4682B4, #5F9EA0, #4682B4);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
    z-index: 999;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
}

.message-content {
    width: 100%;
    text-align: center;
    animation: scrollRight 15s linear infinite;
}

.message-text {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes scrollRight {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Slots Images Section */
.slots-images-section {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    padding: 15px 20px;
    z-index: 998;
    border-bottom: 2px solid #e9ecef;
}

.slots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.slots-container::-webkit-scrollbar {
    display: none; /* WebKit */
}

.slot-image {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.slot-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Icons Section */
.icons-section {
    position: fixed;
    top: 220px;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 997;
}

.icons-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
}

.icon-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 12px;
}

.icon-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.main-content {
    margin-top: 300px;
    padding: 20px;
}

/* In Play Section Styles */
.in-play-section {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 999;
    border-bottom: 2px solid #e9ecef;
    animation: slideDown 0.3s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: calc(100vh - 110px);
    width: 100vw;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.in-play-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 2px solid #e9ecef;
    background: linear-gradient(135deg, #91cdff, #394b4f);
    color: white;
}

.in-play-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.in-play-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    width: 100vw;
    margin: 0;
    max-width: 100%;
    height: 100%;
}

.in-play-placeholder {
    text-align: center;
    color: #666;
    padding: 40px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.in-play-placeholder p {
    margin: 10px 0;
    font-size: 16px;
}

.in-play-placeholder p:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Loading and Matches Styles */
.loading-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4682B4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.matches-container {
    padding: 0;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    height: calc(100vh - 200px);
    min-height: 0;
    width: 100vw;
    margin: 0;
    max-width: 100%;
}

.match-item {
    background-color: #f8f9fa;
    border-bottom: 1px solid #666666;
    padding: 20px 25px;
    transition: background-color 0.3s ease;
    width: 100vw;
    box-sizing: border-box;
    margin: 0;
    max-width: 100%;
    min-height: 80px;
}

.match-item:hover {
    background-color: #f1f3f4;
}

.match-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.match-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.play-icon {
    background-color: #6c757d;
    border-radius: 6px;
    position: relative;
}

.play-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #6bb6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-symbol {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 10px;
    margin-left: 1px;
}

.f-icon, .b-icon {
    background-color: #6c757d;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.f-icon::before, .b-icon::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: rgb(0, 128, 0);
    border-radius: 16px 0 0 16px;
}

.f-icon span, .b-icon span {
    position: relative;
    z-index: 1;
    color: white;
    font-weight: 600;
}

.play-symbol {
    font-style: normal;
    font-size: 10px;
    margin-left: 1px;
}

.match-content {
    flex: 1;
}

.match-datetime {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
    font-family: monospace;
}

.match-teams {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.live-indicator {
    color: #dc3545;
    font-weight: 700;
    font-size: 12px;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Mobile responsive for In Play section */
@media (max-width: 768px) {
    .in-play-section {
        top: 95px;
    }
    
    .in-play-header {
        padding: 12px 20px;
    }
    
    .in-play-header h2 {
        font-size: 20px;
    }
    
    .close-btn {
        font-size: 24px;
    }
    
    .in-play-content {
        padding: 20px 15px;
    }
    
    .in-play-placeholder {
        padding: 30px 15px;
    }
    
    .in-play-placeholder p {
        font-size: 14px;
    }
    
    .in-play-placeholder p:first-child {
        font-size: 16px;
    }
    
    .matches-container {
        padding: 0;
        flex: 1;
        height: calc(100vh - 120px);
        min-height: 0;
        overflow-y: auto;
        width: 100vw;
        margin: 0;
        max-width: 100%;
    }
    
    .match-item {
        padding: 18px 20px;
        width: 100vw;
        margin: 0;
        max-width: 100%;
        min-height: 70px;
    }
    
    .match-row {
        gap: 12px;
    }
    
    .match-icons {
        gap: 6px;
    }
    
    .icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .play-icon::before {
        width: 18px;
        height: 18px;
    }
    
    .f-icon, .b-icon {
        border-radius: 14px;
    }
    
    .f-icon::before, .b-icon::before {
        border-radius: 14px 0 0 14px;
    }
    
    .match-datetime {
        font-size: 15px;
    }
    
    .match-teams {
        font-size: 16px;
    }
    
    .live-indicator {
        font-size: 10px;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html, body {
        margin: 0;
        padding: 0;
        width: 100vw;
        overflow-x: hidden;
    }
    
    .in-play-section {
        top: 85px;
        width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        position: fixed !important;
        height: calc(100vh - 85px) !important;
    }
    
    .in-play-content {
        width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }
    
    .matches-container {
        width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .match-item {
        width: 100vw !important;
        margin: 0 !important;
        padding: 10px 12px !important;
        box-sizing: border-box !important;
    }
    
    /* Force full width on all mobile elements */
    .in-play-section * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    
    .in-play-header {
        padding: 10px 15px;
    }
    
    .in-play-header h2 {
        font-size: 18px;
    }
    
    .close-btn {
        font-size: 22px;
    }
    
    .in-play-content {
        padding: 15px 10px;
    }
    
    .in-play-placeholder {
        padding: 25px 10px;
    }
    
    .matches-container {
        padding: 0;
        flex: 1;
        height: calc(100vh - 100px);
        min-height: 0;
        overflow-y: auto;
        width: 100vw;
        margin: 0;
        max-width: 100%;
    }
    
    .match-item {
        padding: 16px 18px;
        width: 100vw;
        margin: 0;
        max-width: 100%;
        min-height: 65px;
    }
    
    .match-row {
        gap: 10px;
    }
    
    .match-icons {
        gap: 5px;
    }
    
    .icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .play-icon::before {
        width: 16px;
        height: 16px;
    }
    
    .f-icon, .b-icon {
        border-radius: 13px;
    }
    
    .f-icon::before, .b-icon::before {
        border-radius: 13px 0 0 13px;
    }
    
    .match-datetime {
        font-size: 14px;
    }
    
    .match-teams {
        font-size: 15px;
    }
    
    .live-indicator {
        font-size: 9px;
        margin-left: 6px;
    }
}

/* Login page specific styles */
body.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.login-page .main-content {
    margin-top: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-form {
    text-align: center;
    background-color: #ffffff;
}

.logo {
    text-align: center;
    margin-bottom: -5px;
}

.logo-img {
    max-width: 200px;
    height: auto;
    max-height: 80px;
}

.signin-heading h2 {
    color: #2196F3;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: normal;
}

.form {
    width: 100%;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 15px;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: #4682B4;
}

.input-group input::placeholder {
    color: #666;
    font-size: 15px;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
}

.remember-me input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    cursor: pointer;
    accent-color: #4682B4;
}

.remember-me label {
    color: #333;
    font-size: 13px;
    cursor: pointer;
}

.signin-btn {
    width: 100%;
    padding: 12px;
    background-color: #4682B4;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signin-btn:hover {
    background-color: #2F4F8F;
}

.copyright {
    margin-top: 25px;
    text-align: center;
}

.copyright p {
    color: #999;
    font-size: 14px;
}

/* Header Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .header-logo {
        max-height: 40px;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .flashing-message {
        top: 60px;
        height: 35px;
    }
    
    .message-text {
        font-size: 14px;
    }
    
    .slots-images-section {
        top: 95px;
        padding: 10px 15px;
    }
    
    .slot-image {
        width: 100px;
        height: 75px;
    }
    
    .slots-container {
        gap: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 15px;
    }
    
    .slot-image {
        flex-shrink: 0;
    }
    
    .icons-section {
        top: 180px;
        padding: 15px;
    }
    
    .icons-container {
        gap: 25px;
        max-width: 450px;
        padding: 0 15px;
    }
    
    .icon-image {
        width: 100px;
        height: 100px;
    }
    
    .icon-text {
        font-size: 12px;
    }
    
    .main-content {
        margin-top: 260px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
        height: 55px;
    }
    
    .header-logo {
        max-height: 35px;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .flashing-message {
        top: 55px;
        height: 30px;
    }
    
    .message-text {
        font-size: 12px;
    }
    
    .slots-images-section {
        top: 85px;
        padding: 8px 10px;
    }
    
    .slot-image {
        width: 80px;
        height: 60px;
    }
    
    .slots-container {
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10px;
    }
    
    .slot-image {
        flex-shrink: 0;
    }
    
    .icons-section {
        top: 160px;
        padding: 10px;
    }
    
    .icons-container {
        gap: 20px;
        max-width: 400px;
        padding: 0 10px;
    }
    
    .icon-item {
        flex-shrink: 0;
        padding: 8px;
    }
    
    .icon-image {
        width: 90px;
        height: 90px;
    }
    
    .icon-text {
        font-size: 11px;
    }
    
    .main-content {
        margin-top: 220px;
        padding: 15px;
    }
}

/* Login page responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        max-width: 100%;
    }
    
    .logo-img {
        max-width: 250px;
        max-height: 100px;
    }
    
    .input-group input {
        padding: 16px 18px;
        font-size: 16px;
    }
    
    .input-group input::placeholder {
        font-size: 16px;
    }
    
    .remember-me label {
        font-size: 14px;
    }
    
    .signin-btn {
        padding: 14px;
        font-size: 15px;
    }
    
    .copyright p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .logo-img {
        max-width: 300px;
        max-height: 120px;
    }
    
    .input-group {
        margin-bottom: 20px;
    }
    
    .input-group input {
        padding: 18px 20px;
        font-size: 17px;
    }
    
    .input-group input::placeholder {
        font-size: 17px;
    }
    
    .remember-me {
        margin-bottom: 25px;
    }
    
    .remember-me label {
        font-size: 15px;
    }
    
    .signin-btn {
        padding: 16px;
        font-size: 16px;
    }
    
    .copyright {
        margin-top: 30px;
    }
    
    .copyright p {
        font-size: 14px;
    }
}

/* Live indicator with blinking animation */
.live-indicator {
    display: inline-block;
    background-color: rgb(0, 128, 0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

.live-text {
    color: rgb(0, 128, 0);
    font-weight: bold;
    font-size: 12px;
}

/* Profile Section Styles */
.profile-section {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 999;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    width: 100vw;
    height: calc(100vh - 110px);
}

.profile-header {
    background: linear-gradient(135deg, #91cdff, #394b4f);
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.profile-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.profile-content {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.profile-info {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 0;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: none;
}

.profile-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    background-color: #ffffff;
}

.profile-item:last-child {
    border-bottom: none;
}

.profile-label {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.profile-value {
    font-weight: normal;
    color: #333;
    font-size: 16px;
}

.profile-value.balance-amount {
    color: #28a745;
    font-weight: 700;
}

.profile-value.exposure-amount {
    color: #dc3545;
    font-weight: 700;
}

.profile-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.logout-btn {
    background-color: #dc3545;
    color: white;
}

.logout-btn:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.change-password-btn {
    background-color: #4682B4;
    color: white;
}

.change-password-btn:hover {
    background-color: #3a6b9a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(70, 130, 180, 0.3);
}

/* Mobile responsive styles for profile section */
@media (max-width: 768px) {
    .profile-section {
        width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        position: fixed !important;
        height: calc(100vh - 95px) !important;
        top: 95px !important;
    }
    
    .profile-content {
        width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .profile-info {
        margin: 0 !important;
        padding: 0 !important;
        width: 100vw !important;
    }
    
    .profile-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px !important;
        width: 100vw !important;
        margin: 0 !important;
    }
    
    .profile-label {
        font-size: 14px;
    }
    
    .profile-value {
        font-size: 16px;
    }
    
    .profile-actions {
        flex-direction: column;
        gap: 10px;
        padding: 20px !important;
        margin: 0 !important;
        width: 100vw !important;
    }
    
    .profile-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .profile-header {
        padding: 15px;
    }
    
    .profile-header h2 {
        font-size: 20px;
    }
    
    .profile-content {
        padding: 0 !important;
        width: 100vw !important;
    }
    
    .profile-info {
        padding: 0 !important;
        width: 100vw !important;
    }
    
    .profile-item {
        padding: 12px 15px !important;
        width: 100vw !important;
    }
    
    .profile-label {
        font-size: 13px;
    }
    
    .profile-value {
        font-size: 14px;
    }
    
    .profile-actions {
        padding: 15px !important;
        width: 100vw !important;
    }
}

/* Change Password Section Styles */
.change-password-section {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 999;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    width: 100vw;
    height: calc(100vh - 110px);
}

.change-password-header {
    background: linear-gradient(135deg, #91cdff, #394b4f);
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.change-password-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.change-password-content {
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.change-password-form {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #91cdff;
    box-shadow: 0 0 0 3px rgba(145, 205, 255, 0.1);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.cancel-btn, .submit-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cancel-btn {
    background-color: #6c757d;
    color: white;
}

.cancel-btn:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.submit-btn {
    background-color: #91cdff;
    color: white;
}

.submit-btn:hover {
    background-color: #7bb3ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(145, 205, 255, 0.3);
}

/* Mobile responsive styles for change password section */
@media (max-width: 768px) {
    .change-password-section {
        width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        position: fixed !important;
        height: calc(100vh - 95px) !important;
        top: 95px !important;
    }
    
    .change-password-content {
        width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .change-password-form {
        margin: 0 !important;
        padding: 15px !important;
        width: 100vw !important;
        border-radius: 0 !important;
    }
    
    .form-group {
        margin-bottom: 15px !important;
    }
    
    .form-group input {
        width: 100% !important;
        margin: 0 !important;
        padding: 12px 15px !important;
        box-sizing: border-box !important;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .cancel-btn, .submit-btn {
        width: 100% !important;
        min-width: auto !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .change-password-header {
        padding: 15px;
    }
    
    .change-password-header h2 {
        font-size: 20px;
    }
    
    .change-password-content {
        padding: 0 !important;
        width: 100vw !important;
    }
    
    .change-password-form {
        padding: 10px !important;
        width: 100vw !important;
        margin: 0 !important;
    }
    
    .form-group {
        margin-bottom: 15px !important;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input {
        padding: 10px 12px !important;
        font-size: 14px !important;
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .form-actions {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .cancel-btn, .submit-btn {
        width: 100% !important;
        margin: 0 !important;
    }
}

