/* Wireframe Prototype Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.wireframe-header {
    background-color: #fff;
    border: 2px dashed #999;
    padding: 20px 0;
    margin-bottom: 20px;
}

.wireframe-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    border: 2px solid #333;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 24px;
    background-color: #e0e0e0;
}

.wireframe-nav {
    display: flex;
    gap: 15px;
}

.nav-item {
    border: 1px solid #666;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    background-color: #f0f0f0;
}

.nav-item:hover {
    background-color: #e0e0e0;
}

/* Hero Section */
.wireframe-hero {
    background-color: #fff;
    border: 2px dashed #999;
    padding: 60px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.wireframe-title {
    border: 2px solid #333;
    display: inline-block;
    padding: 15px 30px;
    margin-bottom: 20px;
    font-size: 36px;
    background-color: #e0e0e0;
}

.wireframe-text {
    border: 1px dashed #999;
    padding: 10px;
    margin: 10px 0;
    background-color: #f9f9f9;
    min-height: 20px;
}

.wireframe-button {
    border: 2px solid #333;
    padding: 12px 30px;
    background-color: #e0e0e0;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

.wireframe-button:hover {
    background-color: #d0d0d0;
}

/* Main Content */
.wireframe-main {
    margin-bottom: 20px;
}

.content-wrapper {
    display: flex;
    gap: 20px;
}

.wireframe-content {
    flex: 2;
    background-color: #fff;
    border: 2px dashed #999;
    padding: 30px;
}

.wireframe-heading {
    border: 2px solid #333;
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 20px;
    font-size: 28px;
    background-color: #e0e0e0;
}

.wireframe-subheading {
    border: 1px solid #666;
    display: inline-block;
    padding: 8px 16px;
    margin: 20px 0 10px 0;
    font-size: 20px;
    background-color: #f0f0f0;
}

/* Image Placeholder */
.wireframe-image {
    border: 2px dashed #999;
    background-color: #f0f0f0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    color: #999;
    font-size: 18px;
    text-align: center;
}

/* Grid Layout */
.wireframe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.wireframe-card {
    border: 2px dashed #999;
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.card-icon {
    border: 1px solid #666;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
    font-size: 14px;
}

.card-title {
    border: 1px solid #666;
    padding: 8px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
    font-size: 18px;
}

.card-text {
    border: 1px dashed #999;
    padding: 8px;
    background-color: #f9f9f9;
    min-height: 40px;
    font-size: 14px;
}

/* Sidebar */
.wireframe-sidebar {
    flex: 1;
    background-color: #fff;
    border: 2px dashed #999;
    padding: 30px;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.widget-title {
    border: 1px solid #666;
    padding: 8px 12px;
    margin-bottom: 15px;
    background-color: #f0f0f0;
    font-size: 18px;
}

.wireframe-list {
    list-style: none;
    border: 1px dashed #999;
    padding: 15px;
    background-color: #f9f9f9;
}

.wireframe-list li {
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
}

.wireframe-list li:last-child {
    border-bottom: none;
}

/* Footer */
.wireframe-footer {
    background-color: #fff;
    border: 2px dashed #999;
    padding: 40px 0 20px;
    margin-top: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column {
    border: 1px dashed #999;
    padding: 20px;
    background-color: #f9f9f9;
}

.footer-title {
    border: 1px solid #666;
    padding: 8px 12px;
    margin-bottom: 15px;
    background-color: #e0e0e0;
    font-size: 16px;
    display: inline-block;
}

.footer-bottom {
    border-top: 2px dashed #999;
    padding-top: 20px;
    text-align: center;
}

/* Mobile App Specific Styles */
.mobile-frame {
    max-width: 375px;
    margin: 0 auto;
    background-color: #fff;
    border: 3px solid #333;
    border-radius: 20px;
    padding: 20px;
    min-height: 667px;
    position: relative;
}

.mobile-header {
    border: 2px dashed #999;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
}

.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 375px;
    border: 2px dashed #999;
    background-color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    border-top: 3px solid #333;
}

.mobile-nav-item {
    border: 1px solid #666;
    padding: 8px 12px;
    text-align: center;
    background-color: #f0f0f0;
    font-size: 12px;
}

/* Form Styles */
.wireframe-form {
    border: 2px dashed #999;
    padding: 20px;
    background-color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    border: 1px solid #666;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 8px;
    background-color: #f0f0f0;
    font-size: 14px;
}

.form-input {
    border: 2px dashed #999;
    padding: 12px;
    width: 100%;
    background-color: #f9f9f9;
    min-height: 40px;
    display: block;
}

.form-select {
    border: 2px dashed #999;
    padding: 12px;
    width: 100%;
    background-color: #f9f9f9;
    min-height: 40px;
}

.form-textarea {
    border: 2px dashed #999;
    padding: 12px;
    width: 100%;
    background-color: #f9f9f9;
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    border: 1px solid #666;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
}

/* Table Styles */
.wireframe-table {
    width: 100%;
    border: 2px dashed #999;
    border-collapse: collapse;
    background-color: #fff;
}

.wireframe-table th {
    border: 1px solid #666;
    padding: 12px;
    background-color: #e0e0e0;
    text-align: left;
}

.wireframe-table td {
    border: 1px dashed #999;
    padding: 12px;
    background-color: #f9f9f9;
}

.wireframe-table tr:hover {
    background-color: #f0f0f0;
}

/* Dashboard Specific */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.dashboard-card {
    border: 2px dashed #999;
    padding: 20px;
    background-color: #fff;
}

.dashboard-stat {
    border: 1px solid #666;
    padding: 15px;
    text-align: center;
    background-color: #e0e0e0;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.dashboard-label {
    border: 1px dashed #999;
    padding: 8px;
    text-align: center;
    background-color: #f9f9f9;
    font-size: 14px;
}

/* Sidebar Navigation */
.sidebar-nav {
    border: 2px dashed #999;
    padding: 20px;
    background-color: #fff;
    min-height: 500px;
}

.sidebar-nav-item {
    border: 1px solid #666;
    padding: 12px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
    display: block;
    text-decoration: none;
    color: #333;
}

.sidebar-nav-item:hover {
    background-color: #e0e0e0;
}

/* Badge/Status */
.wireframe-badge {
    border: 1px solid #666;
    padding: 4px 8px;
    display: inline-block;
    background-color: #e0e0e0;
    font-size: 12px;
    border-radius: 3px;
}

.status-active {
    background-color: #d4edda;
    border-color: #28a745;
}

.status-pending {
    background-color: #fff3cd;
    border-color: #ffc107;
}

.status-cancelled {
    background-color: #f8d7da;
    border-color: #dc3545;
}

/* Breadcrumbs */
.breadcrumbs {
    border: 1px dashed #999;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.breadcrumb-item {
    display: inline;
    margin-right: 10px;
}

.breadcrumb-item::after {
    content: " > ";
    margin-left: 10px;
}

.breadcrumb-item:last-child::after {
    content: "";
}

/* Search Bar */
.search-bar {
    border: 2px dashed #999;
    padding: 12px;
    width: 100%;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    border: 1px solid #666;
    padding: 8px;
    background-color: #fff;
}

.search-button {
    border: 1px solid #666;
    padding: 8px 20px;
    background-color: #e0e0e0;
}

/* Filter Section */
.filter-section {
    border: 2px dashed #999;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 20px;
}

.filter-group {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
}

/* Pagination */
.pagination {
    border: 1px dashed #999;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    background-color: #f9f9f9;
    margin-top: 20px;
}

.pagination-item {
    border: 1px solid #666;
    padding: 8px 12px;
    background-color: #f0f0f0;
    text-decoration: none;
    color: #333;
}

.pagination-item:hover {
    background-color: #e0e0e0;
}

/* Photo Placeholder with Dimensions */
.photo-placeholder {
    border: 3px dashed #999;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    text-align: center;
    position: relative;
}

.photo-placeholder::before {
    content: "📷";
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

/* Map Placeholder */
.map-placeholder {
    border: 2px dashed #999;
    background-color: #e8f5e9;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    position: relative;
}

.map-placeholder::before {
    content: "🗺️";
    font-size: 64px;
    display: block;
    margin-bottom: 10px;
}

/* AR/VR Placeholder */
.ar-placeholder {
    border: 2px dashed #999;
    background-color: #f3e5f5;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    flex-direction: column;
}

.ar-placeholder::before {
    content: "🥽";
    font-size: 64px;
    display: block;
    margin-bottom: 10px;
}

/* Chart Placeholder */
.chart-placeholder {
    border: 2px dashed #999;
    background-color: #fff;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    position: relative;
}

.chart-placeholder::before {
    content: "📊";
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

/* Language Switcher */
.lang-switcher {
    border: 1px solid #666;
    padding: 5px 10px;
    background-color: #f0f0f0;
    display: inline-block;
    margin-left: 10px;
}

/* Currency Selector */
.currency-selector {
    border: 1px solid #666;
    padding: 8px 15px;
    background-color: #e0e0e0;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.currency-option {
    border: 1px solid #999;
    padding: 5px 10px;
    background-color: #fff;
    cursor: pointer;
}

.currency-option.active {
    background-color: #667eea;
    color: white;
    border-color: #667eea;
}

/* Rating Stars */
.rating {
    display: flex;
    gap: 5px;
    margin: 10px 0;
}

.rating-star {
    border: 1px solid #666;
    width: 20px;
    height: 20px;
    background-color: #ffd700;
    border-radius: 50%;
}

/* Notification Badge */
.notification-badge {
    border: 1px solid #dc3545;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .wireframe-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .wireframe-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .wireframe-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-frame {
        max-width: 100%;
        border-radius: 0;
    }
}

