/* Status Page Container */
.status-page-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

/* Main Content Section */
.status-main-content {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

menu, ol, ul {
    list-style: square!important;
    margin: 0;
    padding: 0;
    margin-left: 20px!important;
    font-weight: 500;
}

p {
    font-weight: 500;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.status-title-section h1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

.subtitle {
    color: #6B7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.status-indicator {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-indicator.up {
    background-color: #68B92B;
    color: #fff;
    margin: 0.5rem 0;
    font-weight: 900;
}

.status-title-section {
    width: 60%;
}

.status-check-section {
    width: 40%;
}

.status-indicator.down {
    background-color: #DD514C;
    color: #fff;
    font-weight: 900;
    margin: 0.5rem 0;
}

.status-description {
    color: #4B5563;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Status Details Grid */
.status-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    color: #6B7280;
    font-size: 0.875rem;
}

.detail-value {
    color: #111827;
    font-weight: 600;
}

/* Quick Actions Sidebar */
.quick-actions-sidebar {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.quick-actions-sidebar h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.quick-actions-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 0.375rem;
    color: #111827;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.action-button:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
}

/* Secondary Content */
.status-secondary-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.similar-websites-section,
.troubleshooting-section,
.comments-section {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.troubleshooting-section> h2 {
    padding-bottom: 10px;
}

/* Troubleshooting Section */
.warning-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.warning-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.troubleshooting-steps {
    color: #4B5563;
}

.troubleshooting-steps h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin: 1.5rem 0 0.75rem;
}

.troubleshooting-steps ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.troubleshooting-steps li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #E5E7EB;
    font-size: 0.875rem;
}

.troubleshooting-steps li:last-child {
    border-bottom: none;
}

/* Comments Section */
.comment-form {
    margin-bottom: 1rem;
}

.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    min-height: 100px;
    resize: vertical;
}

.comment-submit {
    background: #3B82F6;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
}

.comments-list {
    margin-top: 1rem;
}

.no-comments {
    color: #6B7280;
    text-align: center;
    padding: 2rem;
    background: #F9FAFB;
    border-radius: 0.5rem;
}

.comment-item {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-time {
    color: #6B7280;
    font-size: 0.875rem;
}

.comment-text {
    color: #111827;
    line-height: 1.5;
}

.error-message {
    color: #DC2626;
    text-align: center;
    padding: 1rem;
    background: #FEE2E2;
    border-radius: 0.5rem;
}

.comment-submit:hover {
    background: #2563EB;
}

.comment-note {
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 1rem;
}


.status-history {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 20px 0;
}

.status-history p {
    margin: 10px 0;
}

.status-history ul {
    margin: 10px 0 10px 20px;
    padding: 0;
    list-style-type: disc;
}

.status-history li {
    margin-bottom: 8px;
}

.status-history strong {
    color: #007BFF; /* Optional: Highlighted color for emphasis */
}


/* Responsive Design */
@media (max-width: 1024px) {
    .status-page-container {
        grid-template-columns: 1fr;
    }
    
    .status-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .status-page-container,
    .status-secondary-content {
        padding: 0 1rem;
        display: block;
    }
    
    .status-header {
        flex-direction: column;
        gap: 1rem;
        display: flex;
    }
    
    .status-indicator {
        align-self: flex-start;
    }
    
    .status-title-section {
    width: 100%;
    }
    
    .status-check-section {
        width: 100%;
    }
    .status-title-section h1 {
        overflow-wrap: anywhere;
    }
}