/**
 * Inline Styles Extracted from PHP Files
 * 
 * These styles were previously inline in PHP files
 * Now they're in a separate CSS file for easy customization
 */

/* ========================================
   TEST AND DEBUG STYLES
   ======================================== */

/* Test section styles */
.test-section {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.test-section h2 {
    color: #333;
    margin-top: 0;
}

.test-section .error {
    color: red;
    font-weight: bold;
}

/* Debug container styles */
.debug-container {
    border: 1px solid #ccc;
    padding: 10px;
    background: #f9f9f9;
    margin: 15px 0;
    border-radius: 4px;
}

/* Highlight box styles */
.highlight {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.highlight p {
    margin: 5px 0;
}

/* Button color reference */
.button-color-reference {
    color: #a2250b;
    font-weight: bold;
}

/* ========================================
   SIMPLE CARD STYLES (for test shortcodes)
   ======================================== */

/* Simple card layout for testing */
.panchak-simple-card {
    padding: 14px;
    background: #fef4cd;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Date info grid for simple cards */
.panchak-date-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.panchak-begin-date,
.panchak-end-date {
    font-size: 14px;
    line-height: 1.5;
}

.panchak-begin-date strong,
.panchak-end-date strong {
    color: #333;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
}

/* ========================================
   TABLE STYLES (for debug output)
   ======================================== */

/* Debug table styles */
.debug-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-family: Arial, sans-serif;
}

.debug-table th {
    background: #f0f0f0;
    font-weight: bold;
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

.debug-table td {
    border: 1px solid #ddd;
    padding: 8px;
    vertical-align: top;
}

.debug-table tr:nth-child(even) {
    background: #f9f9f9;
}

/* Status indicators */
.status-success {
    color: green;
    font-weight: bold;
}

.status-error {
    color: red;
    font-weight: bold;
}

.status-info {
    color: blue;
    font-weight: bold;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    .panchak-date-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .debug-table {
        font-size: 14px;
    }

    .debug-table th,
    .debug-table td {
        padding: 6px;
    }
}

@media (max-width: 480px) {

    .test-section,
    .debug-container,
    .highlight {
        padding: 10px;
        margin: 10px 0;
    }

    .panchak-simple-card {
        padding: 14px;
    }

    .debug-table {
        font-size: 12px;
    }

    .debug-table th,
    .debug-table td {
        padding: 4px;
    }
}