/* Turbo Starter Templates Admin Styles */

/* Notice Styles */
.turbo-notice-gradient {
    width: 99%;
    position: relative;
    padding: 0;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: 20px 0;
    margin-top: 35px;
}

.turbo-notice-content {
    display: flex;
    align-items: center;
    padding: 30px;
}

.turbo-notice-text {
    flex: 1;
}

.turbo-notice-title {
    margin: 0 0 10px 0;
    color: white;
    font-size: 24px;
}

.turbo-notice-desc {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

.turbo-notice-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
}

.trstemp-turbo-notice-btn {
    background: #fff !important;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 15px;
}

.trstemp-turbo-notice-later {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    background-color: #667eea;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    border-radius: 5px;
}
.trstemp-notice-dismiss {
    border: none;
    font-size: 18px;
    color: #fffbfbff;
    cursor: pointer;
    background-color: #ffffffb4;
    border-radius: 50%;
    padding: 3px;
    margin-right: 10px !important;
    margin-top: 10px;

}
/* Dashboard Styles */
.turbo-dashboard {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.turbo-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.turbo-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.turbo-logo h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
}

.turbo-logo p {
    margin: 0;
    opacity: 0.9;
}

.license-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.trstemp-turbo-nav-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.trstemp-tab-link {
    padding: 15px 25px;
    text-decoration: none;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.trstemp-tab-link.active,
.trstemp-tab-link:hover {
    color: #667eea;
    border-bottom-color: #667eea;
    background: #f8f9ff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


.card-header h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #333;
}

.trstemp-required-plugin-status{
    width: 65%;
}
.trstemp-required-plugin-status img{
    width: 100%;;
    border-radius: 8px;
}

.site-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-item {
    display: flex;
    justify-content: space-between;
}

.status-value.active {
    color: #28a745;
}

.status-value.inactive {
    color: #dc3545;
}

/* Legacy Dashboard Styles */
.turbo-dashboard-wrap {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.turbo-dashboard-header {
    text-align: center;
    margin-bottom: 40px;
}

.turbo-dashboard-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.dashboard-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
}

.dashboard-card h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
}

.template-info h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.template-actions,
.import-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.actions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
}

.action-item .icon {
    font-size: 20px;
}

.status-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-item .label {
    font-weight: 600;
}

.status-item .value.active {
    color: #28a745;
}

.status-item .value.inactive {
    color: #dc3545;
}