.btn {
    cursor: pointer;
}

.nav.navbar-nav.last {
    padding-right: 20px;
}

.form-control, .daterangepicker .input-mini, .input-group > .ui-select-bootstrap > input.ui-select-search.form-control, .input-group > .ui-select-bootstrap > input.ui-select-search.form-control.direction-up {
    color: #61646b;
}

.form-control:focus, .daterangepicker .input-mini:focus, .input-group > .ui-select-bootstrap > input.ui-select-search.form-control:focus {
    color: #6f727b;
}


/* ===================================
   Profile View Specific Styles
   Only targets .profile-view-container
   Reuses existing app/bootstrap styles
   =================================== */

/* Profile Container - Only affects profile view */
.profile-view-container {
    padding: 20px;
}

.profile-view-container .header h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Profile Grid Layout */
.profile-view-container .profile-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
}

@media (max-width: 1024px) {
    .profile-view-container .profile-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Styles */
.profile-view-container .profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-view-container .profile-avatar-card {
    text-align: center;
    padding: 20px;
}

.profile-view-container .profile-avatar-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}
.profile-view-container .profile-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-view-container .profile-action-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    padding: 10px 16px;
}

.profile-view-container .profile-action-buttons .btn i {
    width: 18px;
    text-align: center;
}

/* Main Content Area */
.profile-view-container .profile-main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card Enhancements */
.profile-view-container .card {
    margin-bottom: 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.profile-view-container .card .card-block {
    padding: 20px;
}

.profile-view-container .card-header-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    border-radius: 8px 8px 0 0;
    margin: -20px -20px 20px -20px;
}

.profile-view-container .card-header-custom h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.profile-view-container .card-header-custom i {
    color: #4f46e5;
}

/* Form Grid Layout */
.profile-view-container .profile-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.profile-view-container .form-group {
    margin-bottom: 0;
}

.profile-view-container .form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: 6px;
}

.profile-view-container .form-group label i {
    color: #4f46e5;
}

/* Performance Score Section - Compact */
.profile-view-container .score-header-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border-radius: 8px;
    margin-bottom: 16px;
}

.profile-view-container .score-header-compact .score-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-view-container .score-header-compact .score-label {
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-view-container .score-header-compact .score-value {
    color: white;
    font-size: 28px;
    font-weight: 700;
}

.profile-view-container .score-header-compact .info-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.profile-view-container .score-header-compact .info-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Score Breakdown Grid - Compact */
.profile-view-container .score-breakdown-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .profile-view-container .score-breakdown-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}
.profile-view-container .popover {
    max-width: 450px; 
}

.profile-view-container .score-item-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.profile-view-container .score-item-compact .score-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.profile-view-container .score-item-compact .score-icon.charges {
    background: linear-gradient(135deg, #10b981, #059669);
}

.profile-view-container .score-item-compact .score-icon.points {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.profile-view-container .score-item-compact .score-icon.rate {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.profile-view-container .score-item-compact .score-icon.orders {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.profile-view-container .score-item-compact .score-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.profile-view-container .score-item-compact .score-name {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #6c757d;
    letter-spacing: 0.3px;
}

.profile-view-container .score-item-compact .score-number {
    font-size: 16px;
    font-weight: 700;
    color: #212529;
}

/* Statistics Grid - Compact */
.profile-view-container .stats-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.profile-view-container .stat-card-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.profile-view-container .stat-card-compact.clickable {
    cursor: pointer;
}

.profile-view-container .stat-card-compact.clickable:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-view-container .stat-card-compact .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.profile-view-container .stat-card-compact .stat-icon.success {
    background-color: #10b981;
}

.profile-view-container .stat-card-compact .stat-icon.warning {
    background-color: #f59e0b;
}

.profile-view-container .stat-card-compact .stat-icon.danger {
    background-color: #ef4444;
}

.profile-view-container .stat-card-compact .stat-icon.info {
    background-color: #3b82f6;
}

.profile-view-container .stat-card-compact .stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.profile-view-container .stat-card-compact .stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}

.profile-view-container .stat-card-compact .stat-label {
    font-size: 11px;
    font-weight: 500;
    color: #6c757d;
}

/* Points Breakdown - Compact */
.profile-view-container .points-breakdown-compact {
    padding: 14px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.profile-view-container .points-breakdown-compact h6 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.profile-view-container .points-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
}

.profile-view-container .point-item-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.profile-view-container .point-item-compact.total {
    background-color: #4f46e5;
    border-color: #4f46e5;
}

.profile-view-container .point-item-compact.total label,
.profile-view-container .point-item-compact.total .point-value {
    color: white;
}

.profile-view-container .point-item-compact label {
    font-size: 11px;
    font-weight: 500;
    color: #6c757d;
    margin: 0;
}

.profile-view-container .point-item-compact .point-value {
    font-size: 15px;
    font-weight: 700;
    color: #212529;
}

/* Score History Table */
.profile-view-container .score-history-table {
    overflow-x: auto;
}

.profile-view-container .score-history-table table {
    width: 100%;
    margin-bottom: 10px;
}

.profile-view-container .score-history-table .score-change-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.profile-view-container .score-history-table .score-change-badge.positive {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.profile-view-container .score-history-table .score-change-badge.negative {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.profile-view-container .view-all-link {
    text-align: right;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

/* Reviews/Comments */
.profile-view-container .review-item-modern {
    display: flex;
    gap: 12px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    margin-bottom: 10px;
}

.profile-view-container .review-item-modern .review-rating {
    flex-shrink: 0;
}

.profile-view-container .review-item-modern .rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.profile-view-container .review-item-modern .rating-badge.rating-low {
    background-color: #ef4444;
}

.profile-view-container .review-item-modern .rating-badge.rating-medium {
    background-color: #f59e0b;
}

.profile-view-container .review-item-modern .rating-badge.rating-high {
    background-color: #10b981;
}

/* Tags */
.profile-view-container .tag-item-modern {
    position: relative;
    padding: 12px;
    padding-right: 40px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    margin-bottom: 10px;
}

.profile-view-container .tag-item-modern .tag-delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border: none;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}

.profile-view-container .tag-item-modern .tag-delete-btn:hover {
    background-color: #dc2626;
    transform: scale(1.1);
}

.profile-view-container .tag-item-modern .tag-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.profile-view-container .tag-item-modern .tag-owner {
    font-weight: 600;
    color: #212529;
}

.profile-view-container .tag-item-modern .tag-date {
    font-size: 12px;
    color: #6c757d;
}

/* Badges - Enhanced */
.profile-view-container .badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 6px;
    margin-bottom: 6px;
}

.profile-view-container .badge-modern i {
    font-size: 13px;
}

.profile-view-container .badge-device-android {
    background-color: #3ddc84;
    color: white;
}

.profile-view-container .badge-device-ios {
    background-color: #000000;
    color: white;
}

.profile-view-container .badge-device-location {
    background-color: #3b82f6;
    color: white;
}

/* Cards List */
.profile-view-container .card-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 2px solid #e9ecef;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.profile-view-container .card-item-modern.card-active {
    border-color: #10b981;
    background-color: rgba(16, 185, 129, 0.05);
}

.profile-view-container .card-item-modern .card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-view-container .card-item-modern .card-number {
    font-weight: 600;
    color: #212529;
}

.profile-view-container .card-item-modern .card-number i {
    margin-right: 6px;
    color: #4f46e5;
}

/* Tokens List */
.profile-view-container .token-item-modern {
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 2px solid #e9ecef;
    margin-bottom: 10px;
}

.profile-view-container .token-item-modern.token-expired {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.profile-view-container .token-item-modern .token-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.profile-view-container .token-item-modern .token-id {
    font-weight: 600;
    color: #212529;
}

.profile-view-container .token-item-modern .token-status {
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.profile-view-container .token-item-modern .token-status.active {
    background-color: #10b981;
    color: white;
}

.profile-view-container .token-item-modern .token-status.expired {
    background-color: #ef4444;
    color: white;
}

.profile-view-container .token-item-modern code {
    display: block;
    padding: 6px 10px;
    background-color: white;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 12px;
    overflow-x: auto;
}

/* Empty State */
.profile-view-container .empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.profile-view-container .empty-state i {
    font-size: 40px;
    color: #dee2e6;
    margin-bottom: 12px;
}

/* Utility Classes */
.profile-view-container .section-spacing {
    margin-bottom: 20px;
}

/* Additional Profile View Styles for Building Management */

/* Profile Role Badge */
.profile-view-container .profile-role-badge {
    text-align: center;
    margin-top: 15px;
}

.profile-view-container .profile-role-badge .badge {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.profile-view-container .badge-admin {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.profile-view-container .badge-operator {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.profile-view-container .badge-manager {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.profile-view-container .badge-supervisor {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.profile-view-container .badge-worker {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.profile-view-container .badge-user {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: white;
}

/* Building Stats Grid */
.profile-view-container .building-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.profile-view-container .building-stats-grid .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.profile-view-container .building-stats-grid .stat-item.clickable {
    cursor: pointer;
}

.profile-view-container .building-stats-grid .stat-item.clickable:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-view-container .building-stats-grid .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.profile-view-container .building-stats-grid .stat-icon.buildings {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.profile-view-container .building-stats-grid .stat-icon.active {
    background: linear-gradient(135deg, #10b981, #059669);
}

.profile-view-container .building-stats-grid .stat-icon.users {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.profile-view-container .building-stats-grid .stat-icon.orders {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.profile-view-container .building-stats-grid .stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-view-container .building-stats-grid .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}

.profile-view-container .building-stats-grid .stat-label {
    font-size: 12px;
    font-weight: 500;
    color: #6c757d;
    text-transform: uppercase;
}

/* Buildings Preview List */
.profile-view-container .buildings-preview-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-view-container .building-preview-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-view-container .building-preview-item:hover {
    background: white;
    border-color: #4f46e5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.profile-view-container .building-preview-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(79, 70, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.profile-view-container .building-preview-details {
    flex: 1;
    min-width: 0;
}

.profile-view-container .building-preview-details h6 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #212529;
}

.profile-view-container .building-preview-details > span {
    display: block;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 8px;
}

.profile-view-container .building-preview-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-view-container .building-preview-stats .stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 11px;
    color: #6c757d;
}

.profile-view-container .building-preview-stats .stat-badge i {
    color: #4f46e5;
}

.profile-view-container .building-preview-action {
    display: flex;
    gap: 8px;
}

.profile-view-container .building-preview-action .btn {
    padding: 6px 12px;
}

/* Empty State Enhancement */
.profile-view-container .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.profile-view-container .empty-state i {
    font-size: 48px;
    color: #dee2e6;
    margin-bottom: 16px;
}

.profile-view-container .empty-state p {
    font-size: 14px;
    margin: 0;
}

/* View All Link */
.profile-view-container .view-all-link {
    text-align: right;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.profile-view-container .view-all-link a {
    color: #4f46e5;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.profile-view-container .view-all-link a:hover {
    color: #3730a3;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-view-container .building-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-view-container .building-preview-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .profile-view-container .building-preview-action {
        width: 100%;
        margin-top: 10px;
    }
    
    .profile-view-container .building-preview-action .btn {
        flex: 1;
    }
}
/* ========================================
   Building Icon CSS
   Reusable building icon using CSS
   ======================================== */

/* Building icon using CSS background SVG */
.building-icon-css {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236c757d'%3E%3Cpath d='M10 2h4v2h-4V2z M5 21h14v1H5v-1z M7 4h10v17H7V4z M11 15h2v6h-2v-6z M9 6h2v2H9V6z M13 6h2v2h-2V6z M9 10h2v2H9v-2z M13 10h2v2h-2v-2z M9 14h2v2H9v-2z M13 14h2v2h-2v-2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Active building (green) */
.building-icon-css.active {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2328a745'%3E%3Cpath d='M10 2h4v2h-4V2z M5 21h14v1H5v-1z M7 4h10v17H7V4z M11 15h2v6h-2v-6z M9 6h2v2H9V6z M13 6h2v2h-2V6z M9 10h2v2H9v-2z M13 10h2v2h-2v-2z M9 14h2v2H9v-2z M13 14h2v2h-2v-2z'/%3E%3C/svg%3E");
}

/* Inactive building (red) */
.building-icon-css.inactive {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23dc3545'%3E%3Cpath d='M10 2h4v2h-4V2z M5 21h14v1H5v-1z M7 4h10v17H7V4z M11 15h2v6h-2v-6z M9 6h2v2H9V6z M13 6h2v2h-2V6z M9 10h2v2H9v-2z M13 10h2v2h-2v-2z M9 14h2v2H9v-2z M13 14h2v2h-2v-2z'/%3E%3C/svg%3E");
}

/* Alternative: Using pseudo-element with mask */
.building-icon-mask::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 2h4v2h-4V2z M5 21h14v1H5v-1z M7 4h10v17H7V4z M11 15h2v6h-2v-6z M9 6h2v2H9V6z M13 6h2v2h-2V6z M9 10h2v2H9v-2z M13 10h2v2h-2v-2z M9 14h2v2H9v-2z M13 14h2v2h-2v-2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 2h4v2h-4V2z M5 21h14v1H5v-1z M7 4h10v17H7V4z M11 15h2v6h-2v-6z M9 6h2v2H9V6z M13 6h2v2h-2V6z M9 10h2v2H9v-2z M13 10h2v2h-2v-2z M9 14h2v2H9v-2z M13 14h2v2h-2v-2z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.building-icon-mask.active::before {
    background-color: #28a745;
}

.building-icon-mask.inactive::before {
    background-color: #dc3545;
}

/* Size variants */
.building-icon-css.small {
    width: 16px;
    height: 16px;
}

.building-icon-css.large {
    width: 32px;
    height: 32px;
}

.building-icon-mask.small::before {
    width: 16px;
    height: 16px;
}

.building-icon-mask.large::before {
    width: 32px;
    height: 32px;
}