﻿.page-wrapper-ps {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
}

.header-ps {
    background: #e5f2ff;
    color: #495057;
    padding: 50px 60px;
    border-bottom: 4px solid #1e8fc7;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

    .header-ps h1 {
        font-size: 32px;
        margin-bottom: 12px;
        font-weight: 600;
        letter-spacing: -0.5px;
        color: #1e8fc7;
    }

    .header-ps p {
        font-size: 16px;
        opacity: 0.95;
        font-weight: 400;
    }

.content-ps {
    padding: 50px 60px;
    margin-bottom: 25px;
}

/* Status Badge Styles */
.status-badge-ps {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-draft-ps {
    background-color: #e9ecef;
    color: #495057;
    border: 1px solid #dee2e6;
}

.status-pending-ps {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-rejected-ps {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-live-ps {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Status Timeline */
.status-timeline-ps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 30px 0 40px;
}

    .status-timeline-ps::before {
        content: '';
        position: absolute;
        top: 12px;
        left: 0;
        right: 0;
        height: 2px;
        background: #e9ecef;
        z-index: 1;
    }

.status-step-ps {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.status-step-icon-ps {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 12px;
    background: white;
    border: 2px solid #e9ecef;
}

.status-step-ps.active .status-step-icon-ps {
    background: #1e8fc7;
    border-color: #1e8fc7;
    color: white;
}

.status-step-ps.completed .status-step-icon-ps {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.status-step-label-ps {
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    max-width: 100px;
}

.status-step-ps.active .status-step-label-ps {
    color: #1e8fc7;
    font-weight: 600;
}

.status-step-ps.completed .status-step-label-ps {
    color: #28a745;
}

/* Status Info Card */
.status-card-ps {
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #1e8fc7;
}

.status-card-header-ps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.status-card-title-ps {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
}

.status-card-content-ps {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

/* Action Cards */
.action-card-ps {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.action-card-header-ps {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.action-card-icon-ps {
    width: 40px;
    height: 40px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #1e8fc7;
    font-size: 18px;
}

.action-card-title-ps {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.action-card-content-ps {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

/* Alert Box */
.alert-box-ps {
    background: #f0f8ff;
    border-left: 4px solid #1e8fc7;
    padding: 24px 28px;
    margin-bottom: 40px;
}

.alert-title-ps {
    font-weight: 600;
    color: #1e8fc7;
    margin-bottom: 10px;
    font-size: 16px;
}

.alert-text-ps {
    color: #495057;
    font-size: 14px;
    line-height: 1.7;
}

/* Stats Bar */
.stats-bar-ps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #dee2e6;
    border: 1px solid #dee2e6;
    margin-bottom: 40px;
}

.stat-item-ps {
    background: white;
    padding: 24px;
    text-align: center;
}

.stat-number-ps {
    font-size: 28px;
    font-weight: 700;
    color: #1e8fc7;
    margin-bottom: 6px;
}

.stat-label-ps {
    font-size: 13px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Profile Grid */
.section-ps {
    margin-bottom: 45px;
}

.section-header-ps {
    font-size: 20px;
    color: #212529;
    margin-bottom: 25px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
}

.profile-grid-ps {
    display: grid;
    gap: 1px;
    background: #dee2e6;
    border: 1px solid #dee2e6;
}

.profile-item-ps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: white;
    transition: background 0.2s ease;
}

    .profile-item-ps:hover {
        background: #f8f9fa;
    }

.profile-item-left-ps {
    display: flex;
    align-items: center;
    gap: 14px;
}

.item-icon-ps {
    width: 40px;
    height: 40px;
    background: #e3f2fd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 4px;
}

.item-content-ps h3 {
    font-size: 14px;
    color: #212529;
    font-weight: 600;
    margin-bottom: 3px;
}

.item-content-ps p {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 0;
}

.status-complete-ps {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: #d4edda;
    color: #155724;
    font-size: 12px;
    border-radius: 4px;
}

.status-incomplete-ps {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background-color: #f8d7da;
    color: #721c24;
    font-size: 12px;
    border-radius: 4px;
}

/* Confirmation Box */
.confirmation-box-ps {
    background: #fffcf1;
    border: 1px solid #ffde7b;
    padding: 16px;
    margin-bottom: 40px;
    border-radius: 6px;
}

    .confirmation-box-ps label {
        display: flex;
        align-items: center;
        cursor: pointer;
        font-size: 14px;
        color: #212529;
        line-height: 1.6;
    }

    .confirmation-box-ps input[type="checkbox"] {
        width: 15px;
        height: 15px;
        margin-right: 14px;
        cursor: pointer;
        flex-shrink: 0;
        margin-top: 2px;
        accent-color: #1e8fc7;
    }

/* Action Bar */
.action-bar-ps {
    display: flex;
    justify-content: end;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-ps {
        padding: 30px 24px;
    }

        .header-ps h1 {
            font-size: 24px;
        }

    .content-ps {
        padding: 30px 24px;
    }

    .status-timeline-ps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .status-step-ps {
        flex: 0 0 calc(50% - 10px);
    }

    .stats-bar-ps {
        grid-template-columns: 1fr;
    }

    .profile-item-ps {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .action-bar-ps {
        flex-direction: column;
        gap: 12px;
    }
}
