.ntp-wrapper {
    max-width: 760px;
    margin: 30px auto;
    padding: 24px;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #fafcf9;
    font-family: inherit;
}

.ntp-wrapper[dir="rtl"] {
    text-align: right;
}

.ntp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.ntp-title {
    margin: 0;
    font-size: 22px;
    color: #2d5a3d;
}

.ntp-lang-select {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 14px;
}

.ntp-field {
    margin-bottom: 16px;
}

.ntp-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.ntp-field input[type="text"],
.ntp-field input[type="number"],
.ntp-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
}

.ntp-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ntp-checkbox-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 14px;
    cursor: pointer;
    font-weight: 400 !important;
    font-size: 14px;
}

.ntp-checkbox-item input {
    margin: 0;
}

.ntp-submit-btn {
    background: #2d5a3d;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ntp-submit-btn:hover {
    background: #244b32;
}

.ntp-submit-btn:disabled {
    background: #a0a0a0;
    cursor: not-allowed;
}

.ntp-result {
    margin-top: 30px;
}

.ntp-day-block {
    margin-bottom: 24px;
    border-inline-start: 4px solid #2d5a3d;
    padding-inline-start: 16px;
}

.ntp-day-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 10px;
}

.ntp-attraction-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
}

.ntp-attraction-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
    color: #222;
}

.ntp-attraction-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.ntp-attraction-meta span {
    margin-inline-end: 12px;
}

.ntp-attraction-description {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}

.ntp-no-results {
    background: #fff8e6;
    border: 1px solid #f0d78c;
    border-radius: 10px;
    padding: 18px;
    text-align: center;
}

.ntp-no-results-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 6px;
    color: #7a5c00;
}

.ntp-error-message {
    color: #b3261e;
    background: #fdecea;
    border: 1px solid #f5c6c3;
    padding: 10px 14px;
    border-radius: 8px;
    margin-top: 10px;
}

.ntp-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}
