/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn {
    border-radius: 4px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3a7bd5;
    border-color: #3a7bd5;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #2c60b5;
    border-color: #2c60b5;
}

.btn-outline-primary {
    color: #3a7bd5;
    border-color: #3a7bd5;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: #3a7bd5;
    border-color: #3a7bd5;
}

.card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.story-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.story-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.story-card .card-text {
    flex-grow: 1;
}

.story-card .story-image {
    height: 200px;
    object-fit: cover;
}

.story-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
    color: white;
    padding: 100px 0;
}

/* Featured and Recent Stories */
.featured-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff9800;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.story-meta {
    font-size: 0.85rem;
    color: #6c757d;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

/* Comments Section */
.comment {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.comment:last-child {
    border-bottom: none;
}

.comment-author {
    font-weight: 600;
}

.comment-date {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Write Story Page */
.ql-editor {
    min-height: 300px;
}

.image-preview {
    max-width: 100%;
    max-height: 300px;
    margin-top: 10px;
    border-radius: 8px;
}

/* Admin Panel */
.admin-card {
    margin-bottom: 20px;
}

.admin-card .card-header {
    background-color: #f8f9fa;
    font-weight: bold;
}

.user-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.user-list-item:last-child {
    border-bottom: none;
}

.user-avatar-sm {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.banned-user {
    background-color: #fff8f8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .story-card .story-image {
        height: 150px;
    }
    
    .featured-stories .card {
        margin-bottom: 20px;
    }
}