/* css over text ... */
.over_text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* style setting  page */
.checked {
    display: none;
}

.setting-box {
    display: flex;
}

.sync-employees,
.sync-clients {
    padding: 30px;
    border-radius: 6px;
    background: #fff;
    min-height: 200px;
    box-shadow: 0 0.25rem 1.125rem rgba(75, 70, 92, 0.1);
    max-width: 33.33%;
}

.sync-employees {
    margin-right: 30px;
}

.txt-setting {
    margin-top: 10px;
}

.cloodo-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.cloodo-profile-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.2s ease-in-out;
}

.cloodo-profile-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.cloodo-profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cloodo-profile-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.cloodo-profile-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cloodo-profile-info {
    flex-grow: 1;
}

.cloodo-profile-title {
    font-size: 1.2em;
    margin: 0;
    color: #333;
}

.cloodo-profile-slug {
    font-size: 0.9em;
    color: #777;
    margin: 0;
}

.cloodo-profile-body {
    flex-grow: 1;
    margin-bottom: 15px;
}

.cloodo-profile-excerpt {
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
}

.cloodo-profile-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
}

.cloodo-profile-rating {
    font-size: 0.9em;
    color: #f7b200; /* Star color */
}

.cloodo-profile-website {
    font-size: 0.9em;
    color: #0073aa;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.cloodo-profile-website:hover {
    text-decoration: underline;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.page-description {
    font-size: 1.1em;
    color: #666;
    margin-top: 0;
}