.cp-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.cp-header {
    background-color: #00ace6;
    border-bottom: 7px solid #007caf;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-header-inner {
    width: 1280px;
    max-width: 1280px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-header-img {
    height: 140px;
    max-width: 100%;
    object-fit: contain;
}

.cp-header-bar {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cp-main {
    flex: 1;
    background: #f5f7fb;
    padding: 18px 0 26px 0;
}

.cp-wrapper {
    width: 1280px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    gap: 24px;
}

.cp-left {
    flex: 1;
    min-width: 0;
}

.cp-right {
    width: 360px;
    flex-shrink: 0;
}

.cp-left-panel {
    background: #ffffff;
    border: 1px solid #e3e3e3;
}

.cp-left-topline {
    padding: 12px 14px;
    background: #f8f8f8;
    border-bottom: 1px solid #e8e8e8;
    font-size: 14px;
    color: #222;
    font-weight: 600;
}

.cp-sep {
    margin: 0 8px;
    font-weight: 700;
}

.cp-left-content {
    padding: 14px 14px 16px 14px;
}

.cp-module-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 6px;
}

.cp-home-btn {
    border: 1px solid #000;
    background: transparent;
    padding: 4px 12px;
    font-weight: 700;
    cursor: pointer;
}

.cp-home-btn:disabled {
    opacity: 0.6;
    cursor: default;
}

.cp-module-nav-title {
    font-weight: 700;
    color: #222;
    font-size: 13px;
}

.cp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    padding-top: 12px;
}

.cp-tile {
    border: 1px solid #d9d9d9;
    background: #ffffff;
    border-radius: 2px;
    min-height: 112px;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.cp-tile:hover {
    border-color: #00a8e8;
    box-shadow: 0 0 0 2px rgba(0, 168, 232, 0.15);
}

.cp-tile:focus-visible {
    outline: 2px solid #00a8e8;
    outline-offset: 2px;
}

.cp-tile-icon {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    background: #f0fbff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-tile-icon-image {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
}

.cp-tile-letter {
    font-weight: 900;
    color: #0096d6;
    font-size: 14px;
    line-height: 1;
}

.cp-tile-image {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
}

.cp-tile-label {
    font-size: 12px;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    color: #222;
    font-weight: 700;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cp-info-card {
    background: #ffffff;
    border: 1px solid #e3e3e3;
}

.cp-info-header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 14px;
    font-weight: 900;
    color: #222;
    font-size: 14px;
}

.cp-info-body {
    padding: 14px 14px 16px 14px;
}

.cp-info-row {
    font-size: 14px;
    margin-bottom: 8px;
}

.cp-info-email {
    color: #222;
    font-weight: 700;
    margin-top: 2px;
}

.cp-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
    border-top: 1px solid #ededed;
}

.cp-meta li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f3f3f3;
    font-size: 13px;
    color: #222;
}

.cp-meta li:last-child {
    border-bottom: none;
}

.cp-context-error {
    margin-top: 10px;
    font-size: 12px;
    color: #c0392b;
    font-weight: 600;
}

.cp-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e84e1c;
    flex-shrink: 0;
}

.cp-logout-wrap {
    margin-top: 14px;
}

.cp-logout {
    width: 100%;
    border: none;
    background: #f44336;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 800;
    cursor: pointer;
}

.cp-logout:hover {
    background: #d32f2f;
}

.cp-footer {
    background-color: #00ace6;
    border-top: 10px solid #7DBEFF;
    height: 80px;
    display: flex;
    align-items: center;
}

.cp-footer-inner {
    width: 1280px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
}

.cp-footer-text {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.95;
}

.cp-footer-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.cp-footer-col {
    flex: 1;
    display: flex;
    align-items: center;
}

.cp-footer-col:first-child {
    justify-content: flex-start;
}

.cp-footer-col:last-child {
    justify-content: flex-end;
}

@media (max-width: 1100px) {
    .cp-wrapper {
        flex-direction: column;
    }

    .cp-right {
        width: 100%;
    }
}

