/**
 * Admin-specific styles for Indie Analytics
 */

.indie-analytics-intro {
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #00a0d2;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.provider-details {
    margin: 20px 0;
}

.provider-info {
    background: #f8f8f8;
    padding: 15px;
    margin: 10px 0 20px;
}

.provider-info h3 {
    margin-top: 0;
    color: #23282d;
}

.indie-analytics-help {
    margin-top: 30px;
    background: #fff;
    padding: 20px;
    border: 1px solid #e5e5e5;
}

.provider-help-tabs {
    margin-top: 20px;
}

.provider-help-tab-nav {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ccc;
}

.provider-help-tab-nav li {
    margin: 0;
    margin-bottom: -1px;
    margin-right: 5px;
}

.provider-help-tab-nav li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    background: #f1f1f1;
    border: 1px solid #ccc;
    color: #444;
}

.provider-help-tab-nav li a.active {
    background: #fff;
    border-bottom-color: #fff;
}

.provider-help-tab-content {
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-top: none;
}

.provider-help-tab {
    display: none;
}

.provider-help-tab.active {
    display: block;
}

.provider-help-tab h4 {
    margin-top: 0;
    color: #23282d;
}

.provider-help-tab ol {
    margin-left: 20px;
}

.provider-help-tab li {
    margin-bottom: 10px;
}

/* Form field styles */
.form-table th {
    width: 220px;
}

input[type=text].regular-text,
input[type=url].regular-text {
    width: 400px;
}

p.description {
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

/* Responsive styles */
@media screen and (max-width: 782px) {
    .provider-help-tab-nav {
        flex-direction: column;
    }
    
    .provider-help-tab-nav li {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .provider-help-tab-nav li a.active {
        border-bottom-color: #ccc;
    }
    
    input[type=text].regular-text,
    input[type=url].regular-text {
        width: 100%;
    }
} 