

.clienthub-client-title {
    color: #0047b3;
    font-family: Monospaced;
    margin-bottom: 30px;
    font-weight:400;
    font-size: 23px;
}



/* Projects styling */
.clienthub-projects-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.clienthub-project-card {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    background: #f9f9f9;
}
.clienthub-progress-bar-container {
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    margin: 10px 0;
}
.clienthub-progress-bar {
    height: 100%;
    background: #4CAF50;
    border-radius: 5px;
}

/* Settings styling */
.clienthub-settings-form {
    max-width: 600px;
}
.clienthub-form-section {
    margin-bottom: 30px;
}
.clienthub-form-row {
    margin-bottom: 15px;
}
.clienthub-form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
.clienthub-form-row input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.clienthub-form-help {
    font-size: 0.8em;
    color: #666;
    margin-top: 5px;
}
.clienthub-notice {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.clienthub-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.clienthub-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}







/* Basic styling for messages */
    .clienthub-messaging-section {
        margin: 20px 0;
        max-width: 800px;
    }
    .clienthub-conversation {
        margin-bottom: 20px;
        max-height: 400px;
        overflow-y: auto;
        border: 1px solid #ddd;
        padding: 10px;
        background: #f9f9f9;
    }
    .clienthub-message {
        margin-bottom: 10px;
        padding: 10px;
        border-radius: 5px;
    }
    .clienthub-admin-message {
        background: #e1f5fe;
        margin-right: 20%;
    }
    .clienthub-client-message {
        background: #f0f4c3;
        margin-left: 20%;
    }
    .clienthub-message-meta {
        font-size: 0.8em;
        color: #666;
        text-align: right;
    }
    .clienthub-message-input textarea {
        width: 100%;
        margin-bottom: 10px;
    }




    .clienthub-login-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.clienthub-login-container h2 {
    color: #0047b3;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}
.clienthub-login-error {
    background: #f8d7da;
    border-left: 4px solid #d32f2f;
    color: #721c24;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
}
#clienthub-login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
#clienthub-login-form .input {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
#clienthub-login-form .button-primary {
    width: 100%;
    background: #0047b3;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 10px;
}
#clienthub-login-form .button-primary:hover {
    background: #003380;
}
.clienthub-login-links {
    text-align: center;
    margin-top: 20px;
}
.clienthub-login-links a {
    color: #0047b3;
    text-decoration: none;
}
.clienthub-login-links a:hover {
    text-decoration: underline;
}




    /* Basic styling for the portal */
    .clienthub-client-portal {
        max-width: 1200px;
        margin: 0 auto;
    }
    .clienthub-portal-navigation {
        display: flex;
        margin-bottom: 20px;
        border-bottom: 1px solid #ddd;
    }
    .clienthub-nav-item {
        padding: 10px 20px;
        text-decoration: none;
        color: #333;
    }
    .clienthub-nav-item.active {
        font-weight: bold;
        border-bottom: 2px solid #0047b3;
    }
    .clienthub-portal-content {
        background: #fff;
        padding: 20px;
        border-radius: 4px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }