/* Basic styling for the forum plugin */
body {
    font-family: Arial, sans-serif;
}

/* Forum Cards */
.forum-card {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.forum-card h2 {
    font-size: 24px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.forum-card p {
    font-size: 16px;
    line-height: 1.5;
}

/* Forum Submission Form */
#forum-submission-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

#forum-submission-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

#forum-submission-form input[type="text"],
#forum-submission-form textarea,
#forum-submission-form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#forum-submission-form input[type="submit"] {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#forum-submission-form input[type="submit"]:hover {
    background-color: #005983;
}

/* Category Management in Admin */
#category-creation-form {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 600px;
    margin-bottom: 40px;
}

#category-creation-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

#category-creation-form input[type="text"],
#category-creation-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
}

#category-creation-form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#category-creation-form input[type="submit"]:hover {
    background-color: #005983;
}

/* Forum Submission Table in Admin */
.forum-submission-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.forum-submission-table th,
.forum-submission-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.forum-submission-table th {
    background-color: #f1f1f1;
    font-weight: bold;
}

.forum-submission-table td a {
    text-decoration: none;
    color: #0073aa;
}

.forum-submission-table td a:hover {
    color: #005983;
}

/* Admin Dashboard Styling */
.admin-dashboard {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.admin-dashboard h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.admin-dashboard p {
    font-size: 16px;
}
