/* General container for encapsulating the styles */
.custom-chat-style {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header Styling */
.custom-chat-style header {
    background: #3498db;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

.custom-chat-style header h1 {
    font-size: 2.5em;
    margin: 0;
}

.custom-chat-style header p {
    font-size: 1.2em;
    margin: 10px 0;
}

/* Section styling */
.custom-chat-style section {
    padding: 40px;
    margin: 20px auto;
    max-width: 1000px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

/* Section-specific styling */
.custom-chat-style section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 15px;
}

.custom-chat-style section p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.custom-chat-style section ul {
    list-style-type: none;
    padding: 0;
}

.custom-chat-style section ul li {
    background: #ecf0f1;
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 1.1em;
}

.custom-chat-style section ul li:before {
    content: '✔';
    color: #27ae60;
    margin-right: 10px;
    font-weight: bold;
}

/* Footer Styling */
.custom-footer {
    background: #34495e;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.custom-footer h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.custom-footer p {
    font-size: 1em;
    margin: 10px 0;
}

.custom-footer a {
    color: #ecf0f1;
    text-decoration: none;
    border-bottom: 2px solid #3498db;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.custom-footer a:hover {
    color: #3498db;
    border-bottom-color: #fff;
}

.custom-footer small {
    font-size: 0.9em;
    margin-top: 10px;
    display: block;
}

/* General styling for all sections */
.custom-chat-style section {
    padding: 40px;
    margin: 20px auto;
    max-width: 1000px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section-specific Styles */
.custom-chat-style #flash-chat,
.custom-chat-style #intellectual-chat-rooms,
.custom-chat-style #flash-chat-room,
.custom-chat-style #flash-chat-server,
.custom-chat-style #how-to-use-flashchat {
    background: #fff;
}

/* Styling h2 for each section */
.custom-chat-style #flash-chat h2,
.custom-chat-style #intellectual-chat-rooms h2,
.custom-chat-style #flash-chat-room h2,
.custom-chat-style #flash-chat-server h2,
.custom-chat-style #how-to-use-flashchat h2 {
    border-left: 5px solid #3498db;
    padding-left: 15px;
    color: #2c3e50;
}

/* Section-specific Borders */
.custom-chat-style #flash-chat {
    border-top: 4px solid #3498db;
}

.custom-chat-style #intellectual-chat-rooms {
    border-top: 4px solid #9b59b6;
}

.custom-chat-style #flash-chat-room {
    border-top: 4px solid #2ecc71;
}

.custom-chat-style #flash-chat-server {
    border-top: 4px solid #e74c3c;
}

.custom-chat-style #how-to-use-flashchat {
    border-top: 4px solid #f39c12;
    background: #fff;
    padding: 40px;
    margin: 20px auto;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

/* H2 styling inside 'how-to-use-flashchat' section */
.custom-chat-style #how-to-use-flashchat h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #2c3e50;
    border-left: 5px solid #f39c12;
    padding-left: 15px;
}

/* List styles inside 'how-to-use-flashchat' */
.custom-chat-style #how-to-use-flashchat ol {
    padding-left: 20px;
    color: #555;
}

.custom-chat-style #how-to-use-flashchat ol li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.custom-chat-style #how-to-use-flashchat p {
    font-size: 1.1em;
    color: #555;
}


