/* Property Portfolio Styles */
.property-portfolio {
    margin: 0 auto;
    padding: 20px;
    background-color: #f6f6f6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 15px;
}

.property-header h1 {
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

.add-properties-btn {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s;
    margin-left: auto;
    white-space: nowrap;
}

.add-properties-btn:hover {
    background-color: #3367d6;
}

.add-properties-btn .add-icon::before {
    content: '+';
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-right: 6px;
}

.property-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.property-subtitle h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin: 0;
    font-weight: 700;
}

.property-subtitle h2 strong {
    font-weight: 600;
}

.property-subtitle span.highlight {
    color: #000;
    font-weight: 300;
    font-style: normal;


}

.content-grid {
    margin-bottom: 40px;
    padding: 0 15px;
}

.property-section {
    background-color: white;
    width: 100%;
    height: 518px;
    border-radius: 6.58px;
    border: 0.94px solid #e0e0e0;
    padding: 30px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: rotate(0deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.section-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 15px;
    font-weight: 500;
    padding: 4px 18px;
    border-radius: 15px;
    letter-spacing: 0.5px;
}

.digital .section-badge {
    background-color: #e8f0fe;
    color: #1a73e8;
}

.printed .section-badge {
    background-color: #e8f5e8;
    color: #34a853;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.section-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.digital .section-icon {
    background-color: #e8f0fe;
    color: #1a73e8;
}

.printed .section-icon {
    background-color: #e8f5e8;
    color: #34a853;
}

.section-content {
    flex: 1;
}

.section-content p {
    font-size: 13px;
    color: #666;
    margin: 0 0 25px 0;
    line-height: 1.4;
}

.device-selection,
.product-selection {
    margin-bottom: 25px;
    flex-grow: 1;
}

.selection-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.option {
    font-size: 12px;
    color: #666;
    padding: 4px 0;
    line-height: 1.3;
}

.configure-btn {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
    margin-top: auto;
}

.configure-btn:hover {
    background-color: #333;
}

.configure-btn::after {
    content: '→';
    font-size: 14px;
}

.bottom-section {
    text-align: center;

}

.bottom-section h4 {
    font-weight: 700;
    font-style: Bold;
    font-size: 18.79px;
    line-height: 100%;
    letter-spacing: 0%;

}

/* Venue Cards Section */
.venue-section-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 40px 0 30px 0;
}

.venue-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
    padding: 0 10px;
}

.venue-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Image Carousel Section */
.venue-carousel {
    position: relative;
    width: 100%;
    height: 180px;
    background-color: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.venue-carousel img {
    width: 80px;
    height: 80px;
    opacity: 0.4;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    z-index: 2;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.venue-status-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.status-text {
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: #ccc;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-switch.live {
    background: #4caf50;
}

.toggle-switch.paused {
    background: #f44336;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch.live .toggle-slider {
    transform: translateX(20px);
}

.sales-ranking {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
}

.scroll-hint {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 10px;
}

/* Venue Information */
.venue-info {
    text-align: center;
    margin-bottom: 20px;
}

.venue-name-dropdown {
    position: relative;
    margin-bottom: 5px;
}

.venue-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.venue-location {
    font-size: 12px;
    color: #888;
    margin: 5px 0 0 0;
}

.by-month {
    color: #e74c3c;
    font-size: 11px;
    font-weight: 500;
}

/* Metrics Section */
.venue-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
}

.metric-dropdown {
    flex: 1;
    text-align: center;
}

.metric-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.metric-select {
    width: 100%;
    padding: 8px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    padding-right: 25px;
}

.metric-select:focus {
    outline: none;
    border-color: #4285f4;
}

.metric-select.percentage {
    background-color: #fff3e0;
    border-color: #ff9800;
}

.metric-select.revenue {
    background-color: #e8f5e8;
    border-color: #4caf50;
}

/* Revenue Section */
.venue-revenue {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
}

.revenue-item {
    flex: 1;
    text-align: center;
}

.revenue-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.revenue-select {
    width: 100%;
    padding: 8px 10px;
    border: 2px solid #4caf50;
    border-radius: 6px;
    background: #e8f5e8;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    padding-right: 25px;
}

.revenue-select:focus {
    outline: none;
    border-color: #2e7d32;
}

/* Date Section */
.venue-date {
    text-align: center;
}

.date-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.date-input {
    width: 100%;
    padding: 8px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.date-input:focus {
    outline: none;
    border-color: #4285f4;
}

/* New Venue Display Cards Section - Inside Property Portfolio */
.venue-cards-container {
    margin-top: 30px;
    padding: 0 15px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.venue-display-card {
    background: transparent;
    padding: 0;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}


/* Display Carousel Section */
.display-carousel {
    position: relative;
    width: 100%;
    height: 180px;
    background-color: rgba(217, 217, 217, 1);
    margin-bottom: 0;
    overflow: hidden;
}

.display-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.display-main-image {
    width: 80px;
    height: 80px;
    opacity: 0.4;
    object-fit: contain;
}

.carousel-scroll-hint {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 10px;
    z-index: 3;
}

.display-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    width: 0;
    height: 0;
    font-size: 0;
    transition: all 0.3s;
}



.display-nav-prev {
    left: 4px;
    width: 46.999999214755015px;
    height: 41.99999929829172px;
    border-left: 23px solid white;
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
    transform: translateY(-50%) rotate(-180.02deg);
    opacity: 1;
}



.display-nav-next {
    right: 4px;
    width: 47px;
    height: 42px;
    border-right: 23px solid white;
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
    transform: translateY(-50%) rotate(-182deg);
    opacity: 1;

}



.display-ranking {
    position: absolute;
    bottom: 15px;
    right: 7px;
    background: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    z-index: 3;
    width: 31px;
    height: 31px;
    opacity: 1;
    text-align: center;

}

/* Display Status Toggle */
.display-status-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 3;
}

.display-status-label {
    font-weight: 700;
    font-style: Bold;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;

}

.display-toggle-switch {
    position: relative;
    width: 40px;
    height: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.display-toggle-switch.paused {
    background: #f44336;
}

.display-toggle-switch.live {
    background: #4caf50;
}

.display-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.display-toggle-switch.live .display-toggle-slider {
    transform: translateX(20px);
}

/* Display Venue Information */
.display-venue-info {
    background: #ffffff;
    padding: 20px;
    text-align: center;
    margin: 0;
}

.display-venue-name-section {
    margin-bottom: 5px;
}

.display-venue-name-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    padding-right: 25px;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.display-venue-name-select:focus {
    outline: none;
    border-color: #4285f4;
}

.display-venue-name {
    font-weight: 700;
    font-style: Bold;
    font-size: 18.79px;

}

.display-venue-location {
    font-size: 12px;
    color: #888;
    margin: 5px 0;
}

.display-by-month {

    font-weight: 400;
    font-style: normal;
    font-size: 12px;


}

/* Display Metrics Section */
.display-venue-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
    background-color: #fff;
}

.display-metric-group {
    flex: 1;
    text-align: center;
}

.display-metric-label {
    font-size: 11px;
    color: #000;
    margin-bottom: 5px;
    font-weight: 500;
}

.display-metric-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #000000;
    border-radius: 10px;
    background: white;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    padding-right: 25px;
}

.display-metric-select:focus {
    outline: none;
    border-color: #4285f4;
}

/* .display-metric-select.display-percentage {
    background-color: #fff3e0;
    border-color: #ff9800;
} */

/* Display Revenue Section */
.display-venue-revenue {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.display-revenue-group {
    flex: 1;
    text-align: center;
}

.display-revenue-label {
    font-size: 11px;
    color: #000;
    margin-bottom: 5px;
    font-weight: 500;
}

.display-revenue-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #000000;
    border-radius: 10px;
    /* background: #e8f5e8; */
    font-size: 12px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    padding-right: 25px;
}

.display-revenue-select:focus {
    outline: none;
    border-color: #2e7d32;
}

.display-date-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #000000;
    border-radius: 10px;
    background: white;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.display-date-input:focus {
    outline: none;
    border-color: #4285f4;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #666;
}

.nav-arrow.left {
    left: 10px;
}

.nav-arrow.right {
    right: 10px;
}

.nav-arrow:hover {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1000px) {
    .content-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .venue-cards,
    .venue-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .property-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .property-header h1 {
        text-align: center;
    }

    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .display-venue-metrics,
    .display-venue-revenue {
        flex-direction: column;
        gap: 15px;
    }

    .display-metric-group,
    .display-revenue-group {
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 500px) {
    .property-section {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 450px;
    }

    .property-portfolio {
        padding: 15px;
    }

    .content-grid {
        gap: 15px;
    }
}

.indoor-digi {
    text-align: center;
}

/* App Login Section Styles */
.display-app-login-section {
    margin-top: 20px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.display-app-login-tabs {
    display: flex;
    background: transparent;
    border: 2px solid #000000;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 15px;
}

.display-app-tab {
    flex: 1;
    padding: 12px 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    position: relative;
    border-right: 2px solid #000000;
}

.display-app-tab:first-child {
    border-radius: 23px 0 0 23px;
}

.display-app-tab:last-child {
    border-radius: 0 23px 23px 0;
    border-right: none;
}

.display-app-tab.active {
    background: #ff6b35;
    color: white;
}

.display-app-tab:hover:not(.active) {
    background: #f8f9fa;
    color: #333;
}

.display-app-content {
    position: relative;
    padding: 15px;
}

.display-app-input-group {
    display: none;
}

.display-app-input-group.active {
    display: block;
}

.display-app-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 12px;
    color: #333;
    background: white;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.display-app-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

.display-app-input::placeholder {
    color: #999;
    font-size: 11px;
}

/* Responsive adjustments for app login section */
@media (max-width: 768px) {
    .display-app-tab {
        padding: 10px 6px;
        font-size: 10px;
    }

    .display-app-content {
        padding: 12px;
    }

    .display-app-input {
        padding: 8px 10px;
        font-size: 11px;
    }
}

/* Product Info Section Styles */
.venue-name-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.availability-status {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.availability-status.available {
    background-color: #4caf50;
    color: white;
}

.venue-size-badge {
    background-color: #2196f3;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

.product-info-section {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    margin-left: 16px;
}

.product-info-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info-label {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    margin-left: 2px;
    text-align: left;
}

.product-info-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #000000;
    border-radius: 8px;
    font-size: 12px;
    color: #000;
    background: white;
    box-sizing: border-box;
    font-weight: 400;

}

.product-info-input:focus {
    outline: none;
}

.product-info-input::placeholder {
    color: #999;
    font-size: 10px;
}

/* Text alignment helpers */
.text-left {
    text-align: left !important;
}

/* Responsive adjustments for product info */
@media (max-width: 768px) {
    .product-info-section {
        flex-direction: column;
        gap: 8px;
    }

    .venue-name-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}