/* Additional custom styles if needed */

/* Font Awesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Custom pagination styles */
.pagination {
    margin: 40px 0;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
}

.pagination .page-numbers.current {
    background-color: #e50914;
}

.pagination .page-numbers:hover {
    background-color: #444;
}

.pagination .page-numbers.current:hover {
    background-color: #e50914;
}

/* Custom form styles */
form {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    background-color: #222;
    color: #fff;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e50914;
}

/* Comments section */
.comments-area {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-body {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #222;
    border-radius: 4px;
}

.comment-author {
    margin-bottom: 10px;
}

.comment-author .avatar {
    float: left;
    margin-right: 15px;
    border-radius: 50%;
}

.comment-metadata {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.comment-content {
    margin-bottom: 10px;
}

.reply {
    margin-bottom: 10px;
}

.comment-reply-link {
    font-size: 14px;
    color: #e50914;
}

.comment-reply-link:hover {
    color: #ff0a16;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #e50914;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification.success {
    background-color: #2ecc71;
}

.notification.error {
    background-color: #e74c3c;
}