* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #FFD700;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    color: #FFA500;
    opacity: 0.9;
}

/* Controls Section */
.controls-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #1a1a1a;
    border: 2px solid #FFD700;
    border-radius: 15px;
}

.month-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-button {
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.nav-button:hover {
    background: #FFA500;
    transform: translateY(-2px);
}

#currentMonth {
    color: #FFD700;
    font-size: 1.8rem;
    min-width: 200px;
    text-align: center;
}

.calendar-actions {
    display: flex;
    gap: 15px;
}

.action-button {
    padding: 12px 20px;
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-button:hover {
    background: #FFA500;
    transform: translateY(-2px);
}

.action-button.reset {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.action-button.reset:hover {
    background: #FFD700;
    color: #000;
}

/* Calendar Grid */
.calendar-grid {
    background: #1a1a1a;
    border: 2px solid #FFD700;
    border-radius: 15px;
    margin-bottom: 30px;
    overflow: hidden;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #000;
    border-bottom: 2px solid #333;
}

.day-header {
    padding: 20px;
    text-align: center;
    font-weight: bold;
    color: #FFD700;
    border-right: 1px solid #333;
}

.day-header:last-child {
    border-right: none;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #333;
}

.calendar-day {
    background: #1a1a1a;
    min-height: 120px;
    padding: 10px;
    border: 1px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day:hover {
    background: #2d2d2d;
    border-color: #FFD700;
}

.calendar-day.other-month {
    background: #000;
    color: #666;
}

.calendar-day.today {
    background: #2d2d2d;
    border: 2px solid #FFD700;
}

.day-number {
    font-weight: bold;
    margin-bottom: 5px;
    color: #FFD700;
}

.day-content {
    font-size: 0.8rem;
    max-height: 80px;
    overflow-y: auto;
}

.content-item {
    background: #000;
    padding: 4px 8px;
    margin-bottom: 4px;
    border-radius: 4px;
    border-left: 3px solid #FFD700;
    font-size: 0.75rem;
    cursor: pointer;
}

.content-item.blog { border-left-color: #FFD700; }
.content-item.social { border-left-color: #FFA500; }
.content-item.video { border-left-color: #FF4444; }
.content-item.email { border-left-color: #44FF44; }
.content-item.podcast { border-left-color: #4444FF; }

/* Content Section */
.content-section {
    background: #1a1a1a;
    padding: 30px;
    border: 2px solid #FFD700;
    border-radius: 15px;
    margin-bottom: 30px;
}

.content-section h3 {
    margin-bottom: 20px;
    color: #FFD700;
    text-align: center;
}

.content-list {
    max-height: 400px;
    overflow-y: auto;
}

.content-card {
    background: #000;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.content-card:hover {
    border-color: #FFD700;
    transform: translateX(5px);
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.content-title {
    color: #FFD700;
    font-weight: bold;
    font-size: 1.1rem;
}

.content-meta {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    color: #FFA500;
}

.content-type {
    background: #333;
    padding: 2px 8px;
    border-radius: 12px;
}

.content-platform {
    background: #333;
    padding: 2px 8px;
    border-radius: 12px;
}

.content-status {
    background: #333;
    padding: 2px 8px;
    border-radius: 12px;
}

.status-draft { background: #666; }
.status-scheduled { background: #FFA500; color: #000; }
.status-published { background: #00FF00; color: #000; }

.content-notes {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 10px;
}

.content-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
}

.delete-btn:hover {
    background: #ff0000;
}

.no-content {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 50px;
}

/* Test Section */
.test-section {
    background: #1a1a1a;
    padding: 30px;
    border: 2px solid #333;
    border-radius: 15px;
    margin-bottom: 30px;
}

.test-section h3 {
    margin-bottom: 20px;
    color: #FFD700;
    text-align: center;
}

.test-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.test-button {
    padding: 12px 20px;
    background: #333;
    color: #FFD700;
    border: 2px solid #555;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.test-button:hover {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #1a1a1a;
    border: 2px solid #FFD700;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.modal-header h3 {
    color: #FFD700;
}

.close-button {
    background: none;
    border: none;
    color: #FFD700;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.close-button:hover {
    color: #FFA500;
}

.modal-form {
    padding: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FFD700;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #000;
    color: #FFD700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.cancel-button {
    padding: 12px 24px;
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-button:hover {
    background: #FFD700;
    color: #000;
}

.save-button {
    padding: 12px 24px;
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.save-button:hover {
    background: #FFA500;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    color: #666;
    border-top: 1px solid #333;
    margin-top: 40px;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFA500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .controls-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .calendar-actions {
        width: 100%;
        justify-content: center;
    }
    
    .calendar-day {
        min-height: 80px;
        padding: 5px;
    }
    
    .content-item {
        font-size: 0.7rem;
        padding: 2px 4px;
    }
    
    .test-buttons {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
}
