.nexods-testimonial-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #0B0C0C;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.nexods-testimonial-item h3 {
    margin-top: 0;
}
.nexods-stars {
    font-size: 20px;
    color: gold;
    margin-top: 10px;
    margin-bottom: 10px;
}
.nexods-testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.nexods-testimonial-button {
    background: #0073aa;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
}
.nexods-testimonial-button:hover {
    background: #005177;
}
.nexods-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.nexods-modal-content {
    background-color: #0B0C0C;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.5);
}

.nexods-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.nexods-modal-content form input,
.nexods-modal-content form textarea,
.nexods-modal-content form select {
    width: 100%;
    margin-bottom: 15px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.nexods-modal-content form button {
    background: #0073aa;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.nexods-modal-content form button:hover {
    background: #005177;
}
.nexods-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.nexods-author img {
    max-width: 60px;
    max-height: 60px;
    border-radius: 50%;
}

.owl-dots .owl-dot {
    height: 3px;
    width: 10px;
    background-color: #fff !important;
}

.owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.owl-dots .owl-dot.active {
    height: 4px;
    width: 10px;
    background-color: yellow !important;
}