    .forum-container {
        margin: 2px;
        /* padding: 20px; */
    }
    
    .forum-container h1 {
        color: #2c3e50;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .forum-filters {
        background: white;
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 30px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .filter-form {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .filter-group {
        flex: 1;
        min-width: 200px;
    }
    
    .form-control {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
    }
    
    .message-form {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 30px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
	
	
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #2c3e50;
    }
    
    .forum-form textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: inherit;
        resize: vertical;
    }
    
    .module-discussion {
        background: white;
        border-radius: 8px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        overflow: hidden;
    }
    
    .module-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		padding: 5px;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    
    .module-header:hover {
        background: linear-gradient(135deg, #5568d3 0%, #653a8b 100%);
    }
    
    .module-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .module-image {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid rgba(255,255,255,0.3);
    }
    
    .module-header h3 {
        margin: 0;
        font-size: 18px;
    }
    
    .module-header h3 a {
        color: white;
        text-decoration: none;
    }
    
    .module-header h3 a:hover {
        text-decoration: underline;
    }
    
    .message-count {
        font-size: 14px;
        opacity: 0.9;
    }
    

    
    .module-messages {
        padding: 20px;
    }
    
    .module-messages.collapsed {
        display: none;
    }
    
    .message-item {
        border-left: 3px solid #667eea;
        padding: 15px;
        margin-bottom: 15px;
        background: #f8f9fa;
        border-radius: 4px;
    }
    
    .message-item:last-child {
        margin-bottom: 0;
    }
    
    .message-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #dee2e6;
    }
    
    .username {
        color: #667eea;
        font-size: 15px;
    }
    
    .date {
        color: #7f8c8d;
        font-size: 13px;
        margin-left: 10px;
    }
    
    .edited {
        color: #95a5a6;
        font-size: 11px;
        font-style: italic;
        margin-left: 5px;
    }
    
    .message-content {
        color: #34495e;
        line-height: 1.6;
    }
    
    .message-actions button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px 10px;
        color: #7f8c8d;
        transition: color 0.2s;
    }
    
    .message-actions button:hover {
        color: #2c3e50;
    }
    
    .btn {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s;
    }
    
    .btn-primary {
        background: #667eea;
        color: white;
    }
    
    .btn-primary:hover {
        background: #5568d3;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
    }
    
    .btn-secondary {
        background: #95a5a6;
        color: white;
    }
    
    .btn-secondary:hover {
        background: #7f8c8d;
    }
    
    .alert {
        padding: 15px;
        border-radius: 4px;
        margin-bottom: 20px;
    }
    
    .alert-info {
        background: #d1ecf1;
        color: #0c5460;
        border: 1px solid #bee5eb;
        text-align: center;
    }
    
    .alert-info a {
        color: #0c5460;
        font-weight: bold;
    }
    
    .no-messages {
        text-align: center;
        padding: 60px 20px;
        color: #7f8c8d;
    }
    
    .no-messages p {
        font-size: 18px;
        margin: 20px 0;
    }
	
	.reply-form {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
	}

	.reply-form textarea {
		width: 100%;
		margin-bottom: 10px;
	}

	.reply-actions {
		display: flex;
		gap: 10px;
	}

	.btn-reply {
		background: none;
		border: none;
		color: var(--primary-color);
		cursor: pointer;
		padding: 5px 10px;
		font-size: 14px;
	}

	.btn-reply:hover {
		background: rgba(52, 152, 219, 0.1);
		border-radius: 4px;
	}

	.btn-sm {
		padding: 6px 12px;
		font-size: 14px;
	}

    
    .forum-stats {
        display: flex;
        justify-content: space-around;
        background: white;
        padding: 20px;
        border-radius: 8px;
        margin-top: 30px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .stat-item {
        text-align: center;
        color: #2c3e50;
    }
    
    .stat-item i {
        font-size: 32px;
        color: #667eea;
        display: block;
        margin-bottom: 10px;
    }
    
    .stat-item span {
        font-size: 24px;
        font-weight: bold;
        color: #667eea;
    }
    
    @media (max-width: 768px) {
        .filter-form {
            flex-direction: column;
        }
        
        .module-info {
            flex-direction: column;
            text-align: center;
        }
        
        .forum-stats {
            flex-direction: column;
            gap: 20px;
        }
    }
	
/* Subscription */
	.module-subscription {
    margin-left: 5px;
	margin-top: 5px;
}

.subscription-form {
    display: flex;
    align-items: center;
}

.subscription-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    user-select: none;
    font-size: 0.9em;
    color: #FFF;
}

.subscription-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.subscription-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

.subscription-checkbox input:checked ~ .checkmark {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.subscription-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.subscription-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.subscription-text {
    margin-left: 5px;
}