.ccp-wrapper {
    display: flex;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6f9;
}

.ccp-sidebar {
    width: 240px;
    background: #111827;
    color: #fff;
    padding: 30px 20px;
}

.ccp-sidebar h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
}

.ccp-sidebar a {
    display: block;
    color: #cbd5e1;
    padding: 10px 0;
    text-decoration: none;
    transition: 0.3s;
}

.ccp-sidebar a:hover {
    color: #fff;
    padding-left: 5px;
}

.ccp-content {
    flex: 1;
    padding: 40px;
}

.ccp-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.ccp-table {
    width: 100%;
    border-collapse: collapse;
}

.ccp-table th, .ccp-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.ccp-badge {
    padding: 4px 10px;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
}

.ccp-approved { background: #16a34a; }
.ccp-rejected { background: #dc2626; }
.ccp-pending  { background: #f59e0b; }

.ccp-btn {
    background: #2563eb;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
}


/* REGISTER FORM DESIGN UPGRADE */

.ccp-modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ccp-modal-content input,
.ccp-modal-content select,
.ccp-modal-content textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.ccp-modal-content input:focus,
.ccp-modal-content textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.1);
}

.ccp-modal-content input[type="file"] {
    border: 1px dashed #9ca3af;
    background: #f9fafb;
}

.ccp-modal-content button {
    background: #2563eb;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.ccp-modal-content button:hover {
    background: #1d4ed8;
}

.ccp-badge {
    padding:4px 8px;
    border-radius:4px;
    font-size:12px;
    color:#fff;
}

.ccp-approved { background:#16a34a; }
.ccp-pending  { background:#f59e0b; }
.ccp-rejected { background:#dc2626; }


