/* Nadjime Dating Platform Styles */
.nadjime-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nadjime-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1.entry-title {
    display: none;
}
.nadjime-form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.nadjime-form-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.nadjime-form-group {
    margin-bottom: 15px;
}

.nadjime-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.nadjime-form-group input[type="text"],
.nadjime-form-group input[type="email"],
.nadjime-form-group input[type="password"],
.nadjime-form-group input[type="number"],
.nadjime-form-group select,
.nadjime-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.nadjime-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.nadjime-radio-group,
.nadjime-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.nadjime-radio-group label,
.nadjime-checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.nadjime-radio-group input,
.nadjime-checkbox-group input {
    margin-right: 5px;
}

.nadjime-submit-btn {
    background: #e91e63;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.nadjime-submit-btn:hover {
    background: #c2185b;
}

.nadjime-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.nadjime-photo-upload {
    border: 2px dashed #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 15px;
}

.nadjime-photo-preview {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.nadjime-photo-preview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.nadjime-match-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.nadjime-match-photos {
    flex-shrink: 0;
}

.nadjime-match-photos img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.nadjime-match-info {
    flex-grow: 1;
}

.nadjime-match-score {
    background: #4caf50;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.nadjime-connect-btn {
    background: #2196f3;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.nadjime-membership-options {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.nadjime-membership-card {
    flex: 1;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: border-color 0.3s;
}

.nadjime-membership-card:hover {
    border-color: #e91e63;
}

.nadjime-membership-card.selected {
    border-color: #e91e63;
    background: #fce4ec;
}

.nadjime-membership-price {
    font-size: 24px;
    font-weight: bold;
    color: #e91e63;
    margin: 15px 0;
}

.nadjime-status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.nadjime-status-pending {
    background: #ff9800;
    color: white;
}

.nadjime-status-approved {
    background: #4caf50;
    color: white;
}

.nadjime-status-active {
    background: #2196f3;
    color: white;
}

.nadjime-error {
    color: #f44336;
    padding: 10px;
    background: #ffebee;
    border-radius: 5px;
    margin-bottom: 15px;
}

.nadjime-success {
    color: #4caf50;
    padding: 10px;
    background: #e8f5e8;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nadjime-container {
        padding: 10px;
    }
    
    .nadjime-form {
        padding: 20px;
    }
    
    .nadjime-match-card {
        flex-direction: column;
    }
    
    .nadjime-membership-options {
        flex-direction: column;
    }
}
.distance-text {
    color: #666;
    font-size: 0.9em;
    margin-left: 5px;
}

.location-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.overlay-stat .distance-text {
    color: white;
    opacity: 0.9;
}
/* Simple Contact Message Styles */
.nadjime-message.info {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    border: 1px solid #bee5eb;
    border-radius: 16px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.nadjime-message.info h3 {
    color: #0c5460;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.nadjime-message.info p {
    color: #0c5460;
    margin-bottom: 15px;
    line-height: 1.6;
}

.nadjime-message.info strong {
    color: #0c5460;
}

.contact-info {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #17a2b8;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.message-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.nadjime-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nadjime-btn.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.nadjime-btn.secondary {
    background: #f8f9fa;
    color: #2c3e50;
    border: 2px solid #e8ecef;
}

.nadjime-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nadjime-message.info {
        padding: 20px;
    }
    
    .message-actions {
        flex-direction: column;
    }
    
    .nadjime-btn {
        width: 100%;
        justify-content: center;
    }
}