.man-newsletter-form-container {
    width: 100%;
    max-width: 600px;
}

.man-newsletter-form {
    display: block;
}

.man-d-flex {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.man-email {
    flex-grow: 1;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px 0 0 4px;
    padding: 12px 20px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.man-email::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.man-submit-trigger {
    background-color: #f60; /* Orange color from screenshot */
    color: #fff;
    border: none;
    padding: 0 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.man-submit-trigger:hover {
    background-color: #e55a00;
}

.man-icon {
    font-size: 18px;
}

.man-message {
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
}

.man-message.error {
    color: #ff4d4d;
}

.man-message.success {
    color: #4BB543;
}

.man-category-selection {
    margin-top: 20px;
    text-align: left;
}

.man-category-title {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
    opacity: 0.9;
}

.man-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.man-category-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s;
}

.man-category-label:hover {
    background: rgba(255, 255, 255, 0.1);
}

.man-category-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #f60;
}
