/* Obsidian Glassmorphic Standard for Rent-Only */
.or-glass-panel {
    background: rgba(20, 20, 22, 0.85); /* Obsidian #141416 */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    color: #fff;
    font-family: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 600px;
    margin: 20px auto;
}

.or-neon-text {
    color: #00ffff; /* Cyan base */
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    margin-top: 0;
}

.or-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    transition: 0.3s;
}

.or-input:focus {
    outline: none;
    border-color: #ff2d55; /* Pink accent */
    box-shadow: 0 0 10px rgba(255, 45, 85, 0.2);
}

.or-btn-primary {
    background: #ff2d55; /* Neon Pink */
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: 0.3s;
}

.or-btn-primary:hover {
    background: #ff4d70;
    box-shadow: 0 0 15px rgba(255, 45, 85, 0.4);
}

.or-upsell-box {
    background: rgba(255,255,255, 0.03);
    border: 1px solid rgba(255,255,255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.or-upsell-box h3 { margin-top: 0; font-size: 16px; color: #ff2d55; }
.or-upsell-box label { display: block; margin-bottom: 10px; cursor: pointer; }

/* Dashboard Table */
.no-padding { padding: 0 !important; overflow: hidden; }
.or-table { width: 100%; border-collapse: collapse; margin: 0; }
.or-table th { background: rgba(255,255,255,0.05); padding: 15px; text-align: left; font-size: 13px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.or-table td { padding: 15px; border-top: 1px solid rgba(255,255,255,0.05); }

.or-status-tag { padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.status-publish { background: rgba(0,255,150,0.1); color: #00ff96; }
.status-pending { background: rgba(255,200,0,0.1); color: #ffc800; }
.status-draft { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }

.or-btn-mini { background: rgba(255,255,255,0.1); border: none; color: #fff; padding: 6px 12px; border-radius: 4px; cursor: pointer; font-size: 12px; transition: 0.2s; }
.or-btn-mini:hover { background: #ff2d55; }
.or-btn-mini.secondary:hover { background: #00ffff; color: #000; }

/* Single Property Layout */
.or-single-wrap { max-width: 1100px; margin: 0 auto; color: #fff; }
.or-single-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.or-single-price { font-size: 32px; font-weight: 800; color: #00ffff; }
.or-premium-tag { background: #ff2d55; padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 800; display: inline-block; margin-top: 10px; }

.or-single-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.or-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px; margin-top: 20px; }
.or-gallery-item img { border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }

.or-contact-actions { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
.or-btn-whatsapp { background: #25d366; color: #fff; padding: 12px; border-radius: 6px; text-align: center; text-decoration: none; font-weight: 700; font-size: 14px; }
.or-full-width { width: 100%; }

.or-tag { background: rgba(255,255,255,0.05); padding: 5px 12px; border-radius: 6px; font-size: 13px; margin-right: 8px; margin-bottom: 8px; display: inline-block; border: 1px solid rgba(255,255,255,0.1); }
