/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

/* Splash Screen Styles */
.splash-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    width: 100%;
    padding: 3% 0;
    perspective: 1000px;
}

.logo-container {
	margin-left:100px;
    width: 60%;
    max-width: 500px;
    transform-style: preserve-3d;
    animation: float 3s ease-in-out infinite, rotateY 25s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-20px) rotateX(5deg);
    }
}

@keyframes rotateY {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.waw-logo {
    width: 80%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transform-style: preserve-3d;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.welcome-bar {
    background-color: rgba(102, 102, 102, 0.85);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(10deg);
    transform-style: preserve-3d;
    animation-delay: 0.5s;
}

.skailit-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    animation-delay: 1s;
}

.skailit-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
    font-weight: 500;
}

.skailit-logo {
    width: 120px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.loading-container {
    margin-top: 50px;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.loading-bar {
    height: 8px;
    background-color: rgba(230, 230, 230, 0.8);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.loading-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #FF7F50, #FF6347);
    border-radius: 4px;
    transition: width 4s ease;
}

.loading-text {
    margin-top: 10px;
    color: #555;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.main-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto; /* Changed from 'hidden' to 'auto' */
    opacity: 0;
    transition: opacity 1s ease;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.header-logo .small-logo {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav ul li a:hover, nav ul li a.active {
    background-color: #FF7F50;
    color: white;
    box-shadow: 0 4px 10px rgba(255, 127, 80, 0.3);
}

nav ul li a i {
    font-size: 1.1rem;
}

.user-profile a {
    color: #555;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.user-profile a:hover {
    color: #FF7F50;
}

main {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-message {
    text-align: center;
    max-width: 800px;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease;
}

.welcome-message h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.welcome-message p {
    font-size: 1.2rem;
    color: #555;
}

/* 3D effects classes */
.depth-effect {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.rotate-hover {
    transition: transform 0.3s ease;
}

.rotate-hover:hover {
    transform: rotateX(5deg) rotateY(5deg);
}

/* Media Queries */
@media (max-width: 768px) {
    .logo-container {
        width: 80%;
    }
    
    .welcome-bar {
        font-size: 1.4rem;
        padding: 12px 20px;
    }
    
    nav ul {
        gap: 10px;
    }
    
    nav ul li a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .welcome-message h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .logo-container {
        width: 90%;
    }
    
    .welcome-bar {
        font-size: 1.2rem;
        padding: 10px 15px;
        width: 90%;
    }
    
    nav {
        display: none; /* Hide navigation on small screens - would be replaced with mobile menu */
    }
    
    .welcome-message h1 {
        font-size: 1.8rem;
    }
}

.info-icon {
    position: absolute;
    top: 30px;
    right: 100px;
    z-index: 100;
}

.info-icon2 {
    position: absolute;
    top: 30px;
    right: 100px;
    z-index: 100;
	color:black;
}


.info-icon i:hover {
    transform: scale(1.1);
    color: #FF6347;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.login-card {
    width: 380px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform-style: preserve-3d;
}

.card-header {
    background: linear-gradient(135deg, #FF7F50, #FF6347);
    color: white;
    padding: 25px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
    transform-style: preserve-3d;
    transform: translateZ(10px);
}

.card-header h2 {
    margin: 0 0 10px;
    font-size: 1.6rem;
    font-weight: 600;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.card-header p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.card-body {
    padding: 25px;
    transform-style: preserve-3d;
    transform: translateZ(5px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label i {
    margin-right: 8px;
    color: #FF7F50;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(240, 240, 240, 0.7);
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    box-shadow: 0 0 0 2px rgba(255, 127, 80, 0.3);
    background-color: white;
    border-color: #FF7F50;
    outline: none;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input[type="checkbox"] {
    margin-right: 8px;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #FF7F50;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remember-me input[type="checkbox"]:checked {
    background-color: #FF7F50;
}

.remember-me input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: -2px;
    left: 3px;
}

.remember-me label {
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}

.forgot-password a {
    color: #FF7F50;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password a:hover {
    color: #FF6347;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #FF7F50, #FF6347);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.4);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.card-footer {
    padding: 0 25px 25px;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    transform-style: preserve-3d;
    transform: translateZ(5px);
}

.card-footer a {
    color: #FF7F50;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.card-footer a:hover {
    color: #FF6347;
    text-decoration: underline;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 30px 15px;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    animation: modalScale 0.4s ease-out;
    transform-style: preserve-3d;
}

@keyframes modalScale {
    from { 
        transform: scale(0.8) translateY(50px); 
        opacity: 0; 
    }
    to { 
        transform: scale(1) translateY(0); 
        opacity: 1; 
    }
}

.modal-header {
    background: linear-gradient(135deg, #FF7F50, #FF6347);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-header h2 i {
    font-size: 1.6rem;
}

.close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-content {
    padding: 25px;
    overflow-y: auto;
    max-height: calc(90vh - 140px);
    position: relative;
}

.modal-section {
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.modal-section:last-child {
    margin-bottom: 10px;
}

.modal-section h3 {
    color: #FF6347;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.modal-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #FF7F50, #FF6347);
    border-radius: 2px;
}

.modal-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Wellness Wheel Styles */
.wellness-wheel {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
    perspective: 1000px;
}

.wheel-container {
    position: relative;
    width: 280px;
    height: 280px;
    transform-style: preserve-3d;
    animation: rotateWheel 25s linear infinite;
}

@keyframes rotateWheel {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.wheel-segment {
    position: absolute;
    width: 110px;
    height: 110px;
    top: 85px;
    left: 85px;
    transform-origin: center;
    transform: rotateZ(calc(var(--rotation))) translateX(140px) rotateZ(calc(-1 * var(--rotation)));
    text-align: center;
}

.wheel-segment span {
    display: inline-block;
    padding: 8px 12px;
    background-color: var(--segment-color);
    color: white;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    white-space: nowrap;
}

/* Activity Icons */
.activity-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
    gap: 15px;
}

.activity-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    transition: all 0.3s ease;
}

.activity-icon i {
    font-size: 2.5rem;
    color: #FF7F50;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.activity-icon span {
    color: #555;
    font-weight: 500;
    font-size: 0.9rem;
}

.activity-icon:hover i {
    transform: scale(1.2);
    color: #FF6347;
}

/* Scoring System Styles */
.scoring-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.scoring-card {
    flex: 1;
    min-width: 200px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
}

.scoring-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.scoring-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF7F50, #FF6347);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.3);
}

.scoring-icon i {
    font-size: 1.8rem;
    color: white;
}

.scoring-card h4 {
    color: #333;
    text-align: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.scoring-card p {
    color: #555;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

/* Modal Footer */
.modal-footer {
    padding: 20px 25px;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
}

.start-btn {
    padding: 12px 30px;
    background: linear-gradient(to right, #FF7F50, #FF6347);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.4);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.start-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.5);
}

.start-btn:active {
    transform: translateY(0);
}

/* Custom Scrollbar */
.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(240, 240, 240, 0.8);
    border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 127, 80, 0.6);
    border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 127, 80, 0.8);
}

/* Animation for sections */
.modal-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease-out forwards;
}

.modal-section:nth-child(1) { animation-delay: 0.1s; }
.modal-section:nth-child(2) { animation-delay: 0.2s; }
.modal-section:nth-child(3) { animation-delay: 0.3s; }
.modal-section:nth-child(4) { animation-delay: 0.4s; }
.modal-section:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .wheel-container {
        width: 240px;
        height: 240px;
    }
    
    .wheel-segment {
        width: 100px;
        height: 100px;
        top: 70px;
        left: 70px;
        transform: rotateZ(calc(var(--rotation))) translateX(120px) rotateZ(calc(-1 * var(--rotation)));
    }
    
    .wheel-segment span {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .scoring-container {
        flex-direction: column;
    }
    
    .scoring-card {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-section h3 {
        font-size: 1.2rem;
    }
    
    .wheel-container {
        width: 200px;
        height: 200px;
    }
    
    .wheel-segment {
        width: 80px;
        height: 80px;
        top: 60px;
        left: 60px;
        transform: rotateZ(calc(var(--rotation))) translateX(100px) rotateZ(calc(-1 * var(--rotation)));
    }
    
    .wheel-segment span {
        font-size: 0.7rem;
        padding: 5px 8px;
    }
    
    .activity-icons {
        justify-content: center;
    }
    
    .login-card {
        width: 85%;
        max-width: 350px;
    }
    
    .card-header {
        padding: 20px;
    }
    
    .card-header h2 {
        font-size: 1.4rem;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Team Spirit & Collaboration Styles */
.team-spirit-section {
    padding-bottom: 20px;
}

.team-spirit-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.team-visual {
    display: flex;
    justify-content: center;
    height: 180px;
    position: relative;
}

.team-circle-container {
    position: relative;
    width: 180px;
    height: 180px;
}

.team-member-circle {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF7F50, #FF6347);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(255, 127, 80, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    animation-delay: calc(var(--position) * 0.2s);
}

.team-member-circle:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.team-member-circle:nth-child(2) {
    top: 25%;
    right: 0;
}

.team-member-circle:nth-child(3) {
    bottom: 10%;
    right: 15%;
}

.team-member-circle:nth-child(4) {
    bottom: 10%;
    left: 15%;
}

.team-member-circle:nth-child(5) {
    top: 25%;
    left: 0;
}

.team-member-circle i {
    color: white;
    font-size: 18px;
}

.team-center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF7F50, #FF6347);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.4);
}

.team-center-circle i {
    color: white;
    font-size: 24px;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 127, 80, 0.3);
    z-index: 1;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.team-content {
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.collaboration-benefits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: rgba(255, 127, 80, 0.05);
    border-radius: 10px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 127, 80, 0.1);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.benefit-icon i {
    color: #FF6347;
    font-size: 20px;
}

.benefit-text {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

/* Visual Enhancement Styles for Three Sections */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #FF7F50, transparent);
    border-radius: 2px;
}

.header-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FF7F50, #FF6347);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    box-shadow: 0 3px 10px rgba(255, 127, 80, 0.3);
}

.header-icon i {
    color: white;
    font-size: 18px;
}

.section-header h3 {
    color: #333;
    margin: 0;
    font-size: 1.4rem;
}

/* Enhanced Text Styling */
.enhanced-text {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #FF7F50;
}

.highlight {
    background-color: rgba(255, 127, 80, 0.1);
    color: #FF6347;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    margin: 2px;
}

.highlight-icon {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 127, 80, 0.1);
    color: #555;
    padding: 3px 8px;
    border-radius: 20px;
    margin: 0 2px;
    font-weight: 500;
}

.highlight-icon i {
    color: #FF6347;
    margin-right: 5px;
    font-size: 14px;
}

/* Simple Wellness Wheel */
.wellness-wheel-simple {
    position: relative;
    height: 180px;
    margin: 30px auto;
    width: 180px;
}

.wheel-center {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #FF7F50, #FF6347);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.3);
}

.wheel-center span {
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.wheel-segments {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: conic-gradient(
        #FF7F50 0deg 45deg,
        #FF6347 45deg 90deg,
        #FFA07A 90deg 135deg,
        #FF8C69 135deg 180deg,
        #E9967A 180deg 225deg,
        #FA8072 225deg 270deg,
        #FF7F50 270deg 315deg,
        #FF6347 315deg 360deg
    );
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: slow-rotate 60s linear infinite;
}

@keyframes slow-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* CSS to hide navigation and user profile until logged in */
.hidden-until-login {
    display: none; /* Hidden by default (not logged in) */
}

/* This class will be added via JavaScript when user logs in */
body.logged-in .hidden-until-login {
    display: flex; /* Or whatever display property is appropriate */
}

/* Auth buttons styling (shown when not logged in) */
.auth-buttons {
    display: flex;
    align-items: center;
}

body.logged-in .auth-buttons {
    display: none; /* Hide when logged in */
}

.signup-btn {
    padding: 8px 20px;
    background: linear-gradient(to right, #FF7F50, #FF6347);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(255, 127, 80, 0.3);
    transition: all 0.3s ease;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.4);
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-width: 300px;
}

/* Welcome section */
.welcome-section {
    background: linear-gradient(135deg, #FF7F50, #FF6347);
    color: white;
    padding: 40px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.welcome-header {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.welcome-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.welcome-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.welcome-content {
    max-width: 1200px;
    margin: 25px auto 0;
}

.welcome-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.welcome-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.welcome-icon i {
    font-size: 24px;
    color: #FF6347;
}

.welcome-text h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.welcome-text p {
    opacity: 0.9;
    margin: 0;
}

/* Dashboard layout */
.dashboard-layout {
    display: flex;
    max-width: 1200px;
    margin: 30px auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Navigation */
.dashboard-nav {
    width: 250px;
    background-color: #fff;
    border-right: 1px solid #eee;
    padding: 20px 0;
}

.dashboard-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-nav ul li {
    margin-bottom: 5px;
}

.dashboard-nav ul li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dashboard-nav ul li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.dashboard-nav ul li a:hover {
    background-color: rgba(255, 127, 80, 0.1);
    color: #FF6347;
    border-left-color: #FF6347;
}

.dashboard-nav ul li a.active {
    background-color: rgba(255, 127, 80, 0.15);
    color: #FF6347;
    border-left-color: #FF6347;
    font-weight: 500;
}

/* Main content area */
.dashboard-content {
    flex: 1;
    padding: 30px;
    overflow: auto;
}

.content-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.content-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
}

.content-body {
    color: #555;
}

/* Member Dashboard Cards */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    border: 1px solid #eee;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    background: linear-gradient(to bottom, #FF7F50, #FF6347);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon i {
    font-size: 28px;
}

.card-content {
    padding: 20px;
    flex: 1;
}

.card-content h3 {
    margin: 0 0 10px;
    color: #333;
}

.card-content p {
    color: #666;
    margin: 0 0 15px;
}

.card-link {
    display: inline-block;
    color: #FF6347;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.card-link:hover {
    color: #FF7F50;
    text-decoration: underline;
}

/* Admin Dashboard Styles */
.admin-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(to bottom, #FF7F50, #FF6347);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.stat-icon i {
    color: white;
    font-size: 20px;
}

.stat-content h3 {
    margin: 0 0 5px;
    font-size: 0.9rem;
    color: #666;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.recent-activity {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border: 1px solid #eee;
}

.recent-activity h3 {
    margin: 0 0 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recent-activity h3 i {
    color: #FF6347;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.activity-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 127, 80, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.activity-icon i {
    color: #FF6347;
    font-size: 16px;
}

.activity-details {
    flex: 1;
}

.activity-text {
    margin: 0 0 5px;
    color: #333;
}

.activity-time {
    margin: 0;
    font-size: 0.8rem;
    color: #999;
}

/* Enhanced Scoring System Styles */
.scoring-section {
    padding-bottom: 15px;
}

.scoring-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

/* Task Progress Visualization */
.task-progress {
    background-color: rgba(255, 127, 80, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: auto;
}

.progress-dots {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 127, 80, 0.2);
    border-radius: 50%;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 12px;
    width: calc(100% - 6px);
    height: 2px;
    background-color: rgba(255, 127, 80, 0.2);
}

.dot:last-child::before {
    display: none;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

/* Session Indicator */
.session-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 127, 80, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: auto;
}

.session-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 127, 80, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.session-icon i {
    color: #FF7F50;
    font-size: 20px;
}

.session-text {
    font-weight: 500;
    color: #FF6347;
}

/* Games Indicator */
.games-indicator {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: rgba(255, 127, 80, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: auto;
}

.games-indicator i {
    font-size: 24px;
    color: #FF7F50;
    transition: transform 0.3s ease;
}

.games-indicator i:hover {
    transform: scale(1.2);
    color: #FF6347;
}

/* Dashboard Pages */
#monminpg, #monmadinpg {
    display: none;
    width: 100%;
    min-height: 100vh;
    background-color: #f5f7fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dashboard-layout {
        flex-direction: column;
    }
    
    .dashboard-nav {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .welcome-card {
        flex-direction: column;
        text-align: center;
    }
    
    .welcome-header h1 {
        font-size: 2rem;
    }
    
    .info-card {
        flex-direction: column;
    }
    
    .card-icon {
        width: 100%;
        height: 80px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .scoring-cards-container {
        flex-direction: column;
    }
    
    .scoring-card {
        min-width: 100%;
    }
    
    .team-spirit-container {
        flex-direction: column;
    }
    
    .collaboration-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item {
        width: 100%;
        max-width: 200px;
    }
}

@media (min-width: 768px) {
    .team-spirit-container {
        flex-direction: row;
        align-items: center;
    }
    
    .team-visual {
        flex: 1;
    }
    
    .team-content {
        flex: 2;
    }
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

/* For smoother animation */
.fa-spin-smooth {
  animation: fa-spin 1.5s infinite ease-in-out;
}

/* For a pulse effect */
@keyframes fa-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.fa-pulse {
  animation: fa-pulse 1s infinite;
}

/* Apply this class to ensure the icon has proper display settings */
.fas, .fa, .far, .fal, .fab {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

    @keyframes scaleIn {
        0% { transform: scale(0.8); opacity: 0; }
        100% { transform: scale(1); opacity: 1; }
    }
    
    @keyframes fadeIn {
        0% { opacity: 0; }
        100% { opacity: 1; }
    }
	
    @keyframes slideIn {
        0% { transform: translateY(30px); opacity: 0; }
        100% { transform: translateY(0); opacity: 1; }
    }
	
.waw-settings-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.waw-settings-loader {
    width: 50px;
    height: 50px;
    border: 5px solid #5d8a7d;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Change Password Overlay Styles */
.password-change-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.password-change-container {
    background-color: white;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    position: relative;
}

.password-change-overlay.show {
    opacity: 1;
    visibility: visible;
}

.password-change-overlay.show .password-change-container {
    transform: scale(1);
}

.password-change-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.password-change-close:hover {
    color: #333;
}

.password-change-form {
    display: flex;
    flex-direction: column;
}

.password-change-form input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.password-change-form button {
    background-color: #5d8a7d;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.password-change-form button:hover {
    background-color: #4a7268;
}

.password-strength-meter {
    height: 5px;
    background-color: #e0e0e0;
    margin-bottom: 10px;
    border-radius: 3px;
    overflow: hidden;
}

.password-strength-meter-fill {
    height: 100%;
    width: 0;
    transition: width 0.3s ease;
}

.password-strength-weak { background-color: #ff4136; }
.password-strength-medium { background-color: #ff851b; }
.password-strength-strong { background-color: #2ecc40; }

.password-error {
    color: #ff4136;
    margin-bottom: 10px;
    font-size: 14px;
}

.mypraatplekkie-page {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 120px);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Channel Navigation */
.mypraatplekkie-channels-nav {
    display: flex;
    flex-direction: column;
    width: 180px;
    background-color: #2e3136;
    padding: 15px 0;
}

.mypraatplekkie-channel-btn {
    padding: 10px 15px;
    color: #b9bbbe;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.2s ease;
    margin-bottom: 5px;
}

.mypraatplekkie-channel-btn i {
    margin-right: 10px;
    font-size: 16px;
}

.mypraatplekkie-channel-btn:hover {
    background-color: #393c43;
    color: #ffffff;
}

.mypraatplekkie-active {
    background-color: #4f545c;
    color: #ffffff;
    font-weight: bold;
}

.mypraatplekkie-notification-badge {
    background-color: #f04747;
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-left: auto;
    visibility: hidden;
}

.mypraatplekkie-notification-badge[data-count="0"] {
    visibility: hidden;
}

.mypraatplekkie-notification-badge:not([data-count="0"]) {
    visibility: visible;
}

/* Chat Container */
.mypraatplekkie-chat-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #ffffff;
    border-right: 1px solid #e0e0e0;
}

.mypraatplekkie-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f8f8f8;
}

.mypraatplekkie-chat-header h3 {
    margin: 0;
    font-size: 18px;
    color: #4a4a4a;
}

.mypraatplekkie-header-actions button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #7289da;
    transition: transform 0.2s;
}

.mypraatplekkie-header-actions button:hover {
    transform: rotate(180deg);
}

/* Messages Area */
.mypraatplekkie-messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column-reverse; /* New messages at the top */
}

.mypraatplekkie-message {
    display: flex;
    margin-bottom: 15px;
    animation: fade-in 0.3s ease;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mypraatplekkie-message-avatar {
    margin-right: 10px;
}

.mypraatplekkie-message-avatar i {
    font-size: 32px;
    color: #7289da;
}

.mypraatplekkie-message-content {
    flex: 1;
}

.mypraatplekkie-message-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
}

.mypraatplekkie-message-sender {
    font-weight: 600;
    color: #4a4a4a;
    margin-right: 10px;
}

.mypraatplekkie-message-time {
    font-size: 12px;
    color: #999;
}

.mypraatplekkie-message-text {
    color: #4a4a4a;
    line-height: 1.4;
    white-space: pre-wrap;
    word-break: break-word;
}

.mypraatplekkie-message-attachment {
    margin-top: 8px;
}

.mypraatplekkie-attachment-file {
    display: inline-flex;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 4px;
    padding: 5px 10px;
    color: #4a4a4a;
    text-decoration: none;
    transition: background-color 0.2s;
}

.mypraatplekkie-attachment-file:hover {
    background-color: #e0e0e0;
}

.mypraatplekkie-attachment-file i {
    margin-right: 5px;
    color: #7289da;
}

.mypraatplekkie-attachment-image {
    max-width: 300px;
    max-height: 200px;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s;
}

.mypraatplekkie-attachment-image:hover {
    transform: scale(1.05);
}

/* Input Area */
.mypraatplekkie-input-container {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-top: 1px solid #e0e0e0;
    background-color: #f8f8f8;
}

.mypraatplekkie-message-tools {
    display: flex;
    margin-bottom: 10px;
}

.mypraatplekkie-message-tools button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #7289da;
    margin-right: 15px;
    transition: transform 0.2s ease;
}

.mypraatplekkie-message-tools button:hover {
    transform: scale(1.2);
}

.mypraatplekkie-emoji-picker-toggle {
    position: relative;
}

.mypraatplekkie-emoji-picker {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 300px;
    height: 300px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 5px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}

.mypraatplekkie-emoji {
    font-size: 20px;
    cursor: pointer;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.mypraatplekkie-emoji:hover {
    background-color: #f0f0f0;
}

.mypraatplekkie-input-row {
    display: flex;
    align-items: center;
}

#mypraatplekkie-message-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
    font-family: inherit;
    font-size: 14px;
    min-height: 24px;
    max-height: 120px;
    margin-right: 10px;
    transition: border-color 0.2s;
}

#mypraatplekkie-message-input:focus {
    outline: none;
    border-color: #7289da;
}

#mypraatplekkie-send-btn {
    background-color: #7289da;
    color: white;
    border: none;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

#mypraatplekkie-send-btn:hover {
    background-color: #5b6eae;
}

/* Recording Animation */
.mypraatplekkie-recording {
    position: relative;
}

.mypraatplekkie-recording::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #f04747;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    right: -4px;
    animation: pulse 1s infinite;
}


/* Members Sidebar */
.mypraatplekkie-members-sidebar {
    width: 240px;
    background-color: #f5f7f9;
    display: flex;
    flex-direction: column;
}

.mypraatplekkie-sidebar-header {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mypraatplekkie-sidebar-header h4 {
    margin: 0;
    color: #4a4a4a;
}

#mypraatplekkie-online-count {
    font-size: 12px;
    color: #999;
}

.mypraatplekkie-search-members {
    padding: 10px 15px;
    position: relative;
}

#mypraatplekkie-search-input {
    width: 100%;
    padding: 8px 10px 8px 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.mypraatplekkie-search-members i {
    position: absolute;
    left: 25px;
    top: 18px;
    color: #999;
}

.mypraatplekkie-members-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.mypraatplekkie-member {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}

.mypraatplekkie-member:hover {
    background-color: #eaecef;
}

.mypraatplekkie-member.mypraatplekkie-active {
    background-color: #e1e5eb;
}

.mypraatplekkie-member-avatar {
    position: relative;
    margin-right: 10px;
}

.mypraatplekkie-member-avatar i {
    font-size: 24px;
    color: #7289da;
}

.mypraatplekkie-status-indicator {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    bottom: 0;
    right: 0;
    border: 2px solid #f5f7f9;
}

.mypraatplekkie-status-online {
    background-color: #43b581;
}

.mypraatplekkie-status-away {
    background-color: #faa61a;
}

.mypraatplekkie-status-offline {
    background-color: #747f8d;
}

.mypraatplekkie-member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mypraatplekkie-member-name {
    font-weight: 500;
    color: #4a4a4a;
}

.mypraatplekkie-member-status {
    font-size: 12px;
    color: #999;
}

.mypraatplekkie-direct-message-badge {
    background-color: #f04747;
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    visibility: hidden;
}

.mypraatplekkie-direct-message-badge[data-count="0"] {
    visibility: hidden;
}

.mypraatplekkie-direct-message-badge:not([data-count="0"]) {
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mypraatplekkie-page {
        flex-direction: column;
        height: auto;
    }
    
    .mypraatplekkie-channels-nav {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding: 10px;
    }
    
    .mypraatplekkie-channel-btn {
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .mypraatplekkie-members-sidebar {
        width: 100%;
        max-height: 300px;
    }
    
    .mypraatplekkie-chat-container {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .mypraatplekkie-message-avatar {
        display: none;
    }
    
    .mypraatplekkie-input-container {
        padding: 10px;
    }
    
    .mypraatplekkie-message-tools {
        margin-bottom: 5px;
    }
    
    #mypraatplekkie-message-input {
        padding: 8px;
    }
    
    #mypraatplekkie-send-btn {
        width: 36px;
        height: 36px;
    }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mypraatplek-channel:hover, .mypraatplek-member:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.mypraatplek-message:hover {
  transform: translateY(-2px);
}

#mypraatplek-refresh-btn:hover, #mypraatplek-settings-btn:hover, #mypraatplek-sound-toggle:hover, #mypraatplek-theme-toggle:hover, #mypraatplek-fun-mode:hover {
  transform: rotate(15deg);
}

     @keyframes slideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .wellness-question label:hover {
            background: #e9ecef !important;
        }
        .wellness-question input[type="radio"]:checked + * {
            font-weight: 600;
        }