/**
 * Activity Log Pro - Additional Settings Styles
 * 
 * Additional CSS for settings page to replace inline styles
 * and maintain WordPress coding standards.
 */

/* Settings page header icon */
.alp-settings-header-icon {
    vertical-align: middle;
    margin-right: 10px;
}

/* Feed URL containers */
.alp-feed-url-container {
    margin-top: 5px;
    margin-left: 24px;
}

/* Feed button containers */
.alp-feed-button-container {
    margin-top: 10px;
    margin-left: 24px;
}

/* Feed token generation buttons */
.alp-feed-token-btn .dashicons {
    vertical-align: text-bottom;
    margin-right: 4px;
}

/* Feed descriptions */
.alp-feed-description {
    margin-top: 5px;
}

/* Feed note boxes */
.alp-feed-note {
    margin-top: 5px;
    padding: 8px;
    background: #f0f6fc;
    border-left: 4px solid #72aee6;
}

/* Premium upgrade links */
.alp-premium-link {
    color: #059669;
    text-decoration: underline;
    font-weight: 600;
}

/* Social links */
.alp-social-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
    transition: color 0.2s ease;
}

.alp-social-link:hover {
    color: #333333;
}

.alp-social-link svg {
    margin-right: 6px;
}

.alp-social-link span {
    font-size: 14px;
    font-weight: 500;
}

/* Social links container */
.alp-social-links-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Premium feature highlights */
.alp-premium-highlight {
    margin-bottom: 8px;
}

.alp-premium-highlight svg {
    vertical-align: middle;
    margin-right: 8px;
}

/* License message container */
.alp-license-message {
    display: none;
}

/* Settings tabs and content styling */
.alp-settings-content {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
}

/* Form styling improvements */
.alp-form-group {
    margin-bottom: 20px;
}

.alp-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.alp-form-group .description {
    font-style: italic;
    color: #646970;
    margin-top: 5px;
}

/* Button styling */
.alp-button-primary {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 3px;
    border: 1px solid;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
}

.alp-button-primary:hover {
    background: #135e96;
    border-color: #135e96;
    color: #fff;
}

/* Copy button styling */
.alp-copy-btn {
    margin-left: 8px;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 1;
    border-radius: 3px;
    cursor: pointer;
}

/* Success message styling */
.alp-copy-success {
    color: #00a32a;
    font-weight: 600;
    margin-left: 8px;
    font-size: 12px;
}

/* Newsletter section */
.alp-newsletter-section {
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
}

/* Help text styling */
.alp-help-text {
    color: #646970;
    font-size: 13px;
    font-style: italic;
    margin-top: 5px;
}

/* Status indicators */
.alp-status-enabled {
    color: #00a32a;
    font-weight: 600;
}

.alp-status-disabled {
    color: #d63638;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 782px) {
    .alp-social-links-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .alp-feed-url-container,
    .alp-feed-button-container {
        margin-left: 0;
    }
}
