/*
 * My Agency Hub Public (Client Portal) Styles
 */
.my-agency-hub-portal .project-list {
    list-style: none;
    padding: 0;
    border: 1px solid #eee;
    border-radius: 4px;
}

.my-agency-hub-portal .project-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.my-agency-hub-portal .project-item:last-child {
    border-bottom: none;
}

.my-agency-hub-portal .project-title {
    font-weight: bold;
}

.my-agency-hub-portal .project-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
    background-color: #777;
}

.my-agency-hub-portal .status-completed {
    background-color: #28a745;
}

.my-agency-hub-portal .status-on-hold {
    background-color: #ffc107;
    color: #333;
}