/* Projelerim Paneli Stilleri */

/* Uyarı ikonları */
.project-warning {
    display: inline-block;
    margin-left: 4px;
    font-size: 16px;
    cursor: help;
}

.project-warnings {
    display: flex;
    gap: 4px;
    align-items: center;
}

/* Institutions badge'leri */
.institution-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #e5e7eb;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    margin-right: 4px;
}

.institution-badge-small {
    display: inline-block;
    padding: 1px 6px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    font-size: 10px;
    color: #6b7280;
    margin-right: 3px;
}

/* Last activity */
.project-last-activity {
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
}

/* Folder view institutions */
.folder-view-institutions {
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.projects-panel {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    z-index: 10000 !important;
    display: none;
    flex-direction: column !important;
    font-family: 'Google Sans Code', monospace !important;
}

/* Projeler paneli açıkken harita navbar'ını gizle */
.projects-panel.active ~ * .map-navbar.brutalist-navbar,
body:has(.projects-panel.active) .map-navbar.brutalist-navbar,
.map-navbar.brutalist-navbar[data-hidden-by-projects="true"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

.projects-panel.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Panel active olduğunda kesinlikle görünür olmalı */
#projects_panel.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Panel Header - Navbar için */
.projects-panel-header {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 56px;
    background: #ffffff;
    border-bottom: 3px solid #000000;
    padding: 10px 20px;
    flex-shrink: 0;
    z-index: 10001;
}

/* Navbar Container - Proje Paneli Header'ında */
.projects-panel-navbar-container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 100%;
}

/* Projects Navbar Brand */
.projects-navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-family: 'Syne Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border: 2px solid #000000;
    background: #ffffff;
    box-shadow: 2px 2px 0 #000000;
    height: 36px;
    box-sizing: border-box;
}

.projects-navbar-brand .brand-text {
    white-space: nowrap;
    display: inline-block;
}

.projects-navbar-brand .brand-arc {
    color: #000000;
}

.projects-navbar-brand .brand-cap {
    color: #ff2b2b;
}

.projects-navbar-brand .brand-separator {
    color: #ff2b2b;
    font-weight: 700;
    font-size: 16px;
    margin: 0 4px;
    font-family: 'Syne Mono', monospace;
}

.projects-panel-title {
    margin-left: 0;
    font-family: 'Google Sans Code', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.3px;
}

.projects-navbar-section {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 8px;
    height: 36px;
    box-sizing: border-box;
    margin-left: auto;
    justify-content: flex-end;
    max-width: calc(100% - 200px);
}

.projects-navbar-section::-webkit-scrollbar {
    height: 4px;
}

.projects-navbar-section::-webkit-scrollbar-track {
    background: transparent;
}

.projects-navbar-section::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 2px;
}

.projects-navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
    height: 36px;
    box-sizing: border-box;
}

.projects-panel-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.projects-panel-close {
    background: #fff;
    border: 3px solid #000;
    width: 36px;
    height: 36px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    font-family: 'Google Sans Code', monospace;
    font-weight: 700;
    box-shadow: 4px 4px 0 #000;
    position: relative;
}

.projects-panel-close::before {
    content: '';
    position: absolute;
    height: 3px;
    background: #000;
    bottom: 100%;
    left: 0;
    right: 0;
    transform: skew(-45deg, 0) translateX(-1px);
    transition: height 0.15s ease;
    z-index: -1;
}

.projects-panel-close::after {
    content: '';
    position: absolute;
    background: #000;
    top: 0;
    bottom: 0;
    width: 3px;
    left: 100%;
    transform: skew(0, -45deg) translateY(-1px);
    transition: width 0.15s ease;
    z-index: -1;
}

.projects-panel-close:hover {
    background: #000;
    color: #fff;
    transform: translateY(2.5px) scale(0.98);
    box-shadow: 2px 2px 0 #000;
}

.projects-panel-close:hover::before {
    height: 2px;
}

.projects-panel-close:hover::after {
    width: 2px;
}

.projects-panel-close:active {
    transform: translateY(4px) scale(0.96);
    box-shadow: none;
}

/* Toolbar artık navbar'da, bu stil kaldırıldı */

.projects-view-btn {
    width: 30px;
    height: 30px;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease;
    font-family: 'Google Sans Code', monospace;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    box-shadow: 2px 2px 0 #000;
}

.projects-view-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}

.projects-view-btn:hover {
    transform: scale(1.1);
    background: #f5f5f5;
}

.projects-view-btn:hover svg {
    transform: scale(1.15);
}

.projects-view-btn:active {
    transform: scale(0.95);
    box-shadow: 0 0 0 #000;
}

.projects-view-btn:active svg {
    transform: scale(0.9);
}

.projects-view-btn.active {
    background: #ff2b2b;
    color: #fff;
    border-color: #ff2b2b;
    box-shadow: 2px 2px 0 #000;
}

.projects-view-btn.active:hover {
    background: #ff4444;
    transform: scale(1.1);
}

.projects-view-btn.active:active {
    transform: scale(0.95);
}


.projects-search-input,
.projects-filter {
    padding: 8px 12px;
    border: 3px solid #000;
    font-family: 'Google Sans Code', monospace;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    box-shadow: 4px 4px 0 #000;
    transition: all 0.15s ease;
}

.projects-search-input-navbar,
.projects-filter-navbar {
    padding: 6px 10px;
    border: 2px solid #000;
    font-family: 'Google Sans Code', monospace;
    font-size: 12px;
    font-weight: 600;
    background: #fff;
    box-shadow: 2px 2px 0 #000;
    transition: all 0.2s ease;
    height: 30px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.projects-search-input:focus,
.projects-filter:focus {
    outline: none;
    transform: translateY(2px);
    box-shadow: 2px 2px 0 #000;
}

.projects-search-input-navbar:focus,
.projects-filter-navbar:focus {
    outline: none;
    transform: scale(1.02);
    box-shadow: 3px 3px 0 #000;
}

.projects-search-input:hover,
.projects-filter:hover {
    background: #f9fafb;
}

.projects-search-input-navbar:hover,
.projects-filter-navbar:hover {
    background: #f9fafb;
}

.projects-search-input {
    flex: 1;
    max-width: 300px;
}

.projects-search-input-navbar {
    min-width: 140px;
    max-width: 180px;
    flex: 0 0 auto;
}

.projects-filter-navbar {
    min-width: 100px;
    max-width: 140px;
    flex: 0 0 auto;
}

.projects-panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.projects-loading,
.projects-error {
    text-align: center;
    padding: 40px;
    color: #666;
}

.projects-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

/* Liste görünümü için grid'i kaldır */
.projects-list.projects-list-view {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 0;
}

@media (max-width: 768px) {
    .projects-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (min-width: 1200px) {
    .projects-list {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

/* Parsel Kartları */
.projects-parcel-card {
    border: 4px solid #000;
    padding: 16px;
    background: #fff;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 8px 8px 0 #000;
    font-family: 'Google Sans Code', monospace;
}

.projects-parcel-card:hover {
    transform: translateY(-4px) translateX(-4px);
    box-shadow: 12px 12px 0 #000;
}

.parcel-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.parcel-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.parcel-location {
    font-size: 12px;
    color: #666;
}

.parcel-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.parcel-project-count {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.parcel-years {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.year-badge {
    padding: 4px 8px;
    background: #f3f4f6;
    border: 1px solid #000;
    font-size: 11px;
    font-weight: 600;
}

/* Yıl Kartları */
.projects-year-card {
    border: 4px solid #000;
    padding: 16px;
    background: #fff;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 8px 8px 0 #000;
    font-family: 'Google Sans Code', monospace;
}

.projects-year-card:hover {
    transform: translateY(-4px) translateX(-4px);
    box-shadow: 12px 12px 0 #000;
}

.year-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.year-card-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.year-project-count {
    font-size: 14px;
    color: #666;
}

/* Proje Kartları */
.projects-project-card {
    cursor: pointer;
    transition: all 0.15s ease;
    border: 4px solid #000;
    padding: 16px;
    background: #fff;
    box-shadow: 8px 8px 0 #000;
    font-family: 'Google Sans Code', monospace;
    position: relative;
    z-index: 1;
}

.projects-project-card:hover {
    transform: translateY(-4px) translateX(-4px);
    box-shadow: 12px 12px 0 #000;
    z-index: 2;
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
}

.project-card-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    flex: 1;
}

.project-type {
    font-size: 11px;
    padding: 4px 8px;
    background: #f3f4f6;
    border: 1px solid #000;
    margin-left: 8px;
}

.project-card-body {
    margin-bottom: 12px;
}

.project-status {
    display: inline-block;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 #000;
    text-transform: uppercase;
}

.status-planning { background: #fef3c7; }
.status-active { background: #d1fae5; }
.status-on_hold { background: #fee2e2; }
.status-completed { background: #dbeafe; }
.status-cancelled { background: #f3f4f6; }

.project-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-bar {
    flex: 1;
    height: 12px;
    background: #f3f4f6;
    border: 3px solid #000;
    overflow: hidden;
    box-shadow: inset 2px 2px 0 #000;
}

.progress-fill {
    height: 100%;
    background: #000;
    transition: width 0.3s;
}

.progress-text {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    min-width: 40px;
}

.project-card-footer {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.project-card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.project-warnings {
    display: flex;
    gap: 4px;
    align-items: center;
}

.project-warning {
    font-size: 16px;
    line-height: 1;
    cursor: help;
}

.project-parcel-info {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.project-institutions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.institution-badge {
    padding: 4px 8px;
    background: #f3f4f6;
    border: 2px solid #000;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 2px 2px 0 #000;
}

.project-last-activity {
    font-size: 11px;
    color: #666;
    margin-top: 8px;
    font-weight: 600;
}

.projects-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
}

.projects-breadcrumb button,
.projects-breadcrumb-btn {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 6px 12px;
    font-family: 'Google Sans Code', monospace;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111111;
    line-height: 1.2;
}

.projects-breadcrumb button:hover {
    background: #f4f6f8;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.1);
}

.projects-breadcrumb button:active {
    transform: translate(0, 0);
    box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.1);
}

.projects-breadcrumb span {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.projects-empty {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

/* Proje Kartı Action Menüsü */
.project-card-actions {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 10;
}

.project-card-action-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    font-family: 'Google Sans Code', monospace;
    padding: 0;
    position: relative;
    box-shadow: 2px 2px 0 #000;
}

.project-card-action-btn:hover {
    background: #f0f0f0;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #000;
}

.project-card-action-btn:active {
    transform: translate(0, 0);
    box-shadow: 2px 2px 0 #000;
}

.project-card-action-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

.project-action-menu {
    background: #fff;
    border: 3px solid #000;
    box-shadow: 8px 8px 0 #000;
    padding: 8px;
    min-width: 200px;
    font-family: 'Google Sans Code', monospace;
}

.project-action-menu-item {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.15s ease;
    font-family: 'Google Sans Code', monospace;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 4px;
    box-shadow: 2px 2px 0 #000;
}

.project-action-menu-item:last-child {
    margin-bottom: 0;
}

.project-action-menu-item:hover {
    background: #f0f0f0;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #000;
}

.project-action-menu-item:active {
    transform: translate(0, 0);
    box-shadow: 2px 2px 0 #000;
}

.project-action-menu-item-danger {
    color: #dc2626;
    border-color: #dc2626;
}

.project-action-menu-item-danger:hover {
    background: #fee2e2;
    color: #dc2626;
}

.project-action-menu-item svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

.projects-project-card {
    position: relative;
}

/* Liste Görünümü - Windows Explorer Tarzı */
.projects-list-view {
    display: flex;
    flex-direction: column;
    background: transparent;
    font-family: 'Google Sans Code', monospace;
    overflow-x: auto;
}

.projects-list-view::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.projects-list-view::-webkit-scrollbar-track {
    background: #f1f1f1;
    border: 2px solid #000;
}

.projects-list-view::-webkit-scrollbar-thumb {
    background: #000;
    border: 1px solid #000;
}

.projects-list-view::-webkit-scrollbar-thumb:hover {
    background: #333;
}

.projects-list-header {
    display: grid;
    grid-template-columns: 2.5fr 1.8fr 1.2fr 1.2fr 1.8fr 1fr 50px;
    gap: 16px;
    padding: 10px 16px;
    background: #f3f4f6;
    border-bottom: 3px solid #000;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.projects-list-header .projects-list-col {
    padding: 0 4px;
}

.projects-list-item {
    display: grid;
    grid-template-columns: 2.5fr 1.8fr 1.2fr 1.2fr 1.8fr 1fr 50px;
    gap: 16px;
    padding: 12px 16px;
    border-bottom: 2px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.15s ease;
    font-size: 12px;
    align-items: center;
}

.projects-list-item:last-child {
    border-bottom: none;
}

.projects-list-item:hover {
    background: #f9fafb;
}

.projects-list-item:active {
    background: #f3f4f6;
}

.projects-list-col {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 4px;
}

.projects-list-col-name {
    font-weight: 700;
    color: #000;
    font-size: 13px;
}

.projects-list-item-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-warnings-inline {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    flex-shrink: 0;
}

.projects-list-col-parcel {
    font-size: 11px;
    color: #666;
    font-weight: 600;
}

.projects-list-col-type {
    font-size: 11px;
    color: #666;
    text-transform: capitalize;
}

.projects-list-col-status {
    font-size: 11px;
}

.project-status-inline {
    display: inline-block;
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 700;
    border: 2px solid #000;
    text-transform: uppercase;
    box-shadow: 2px 2px 0 #000;
    white-space: nowrap;
}

.project-status-inline.status-planning { background: #fef3c7; }
.project-status-inline.status-active { background: #d1fae5; }
.project-status-inline.status-on_hold { background: #fee2e2; }
.project-status-inline.status-completed { background: #dbeafe; }
.project-status-inline.status-cancelled { background: #f3f4f6; }

.projects-list-col-progress {
    font-size: 11px;
}

.project-progress-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 120px;
}

.progress-bar-inline {
    flex: 1;
    height: 10px;
    background: #f3f4f6;
    border: 2px solid #000;
    overflow: hidden;
    box-shadow: inset 1px 1px 0 #000;
    min-width: 60px;
}

.progress-fill-inline {
    height: 100%;
    background: #000;
    transition: width 0.3s;
}

.progress-text-inline {
    font-size: 11px;
    font-weight: 700;
    color: #000;
    min-width: 40px;
    text-align: right;
    flex-shrink: 0;
}

.projects-list-col-date {
    font-size: 11px;
    color: #666;
    font-weight: 600;
}

.projects-list-col-actions {
    justify-content: flex-end;
    padding-right: 0;
}

.project-list-action-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    flex-shrink: 0;
}

/* Proje detay panelindeki buton stillerini kullan */
.projects-panel .btn-primary {
    padding: 10px 20px;
    border: 2px solid #10b981;
    border-radius: 0;
    font-family: 'Google Sans Code', monospace;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #10b981;
    color: #ffffff;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.projects-panel .btn-primary:hover {
    background: #ffffff;
    color: #10b981;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 0 #000000;
}

.projects-panel .btn-primary:active {
    transform: translate(0, 0);
    box-shadow: 2px 2px 0 0 #000000;
}

.projects-panel .btn-primary svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

.btn-primary-navbar {
    padding: 6px 14px;
    border: 2px solid #10b981;
    border-radius: 0;
    font-family: 'Google Sans Code', monospace;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #10b981;
    color: #ffffff;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 30px;
    flex-shrink: 0;
    box-shadow: 2px 2px 0 #000000;
    box-sizing: border-box;
}

.btn-primary-navbar:hover {
    background: #12d48a;
    color: #ffffff;
    transform: scale(1.05);
}

.btn-primary-navbar:active {
    transform: scale(0.95);
}

.btn-primary-navbar svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-navbar:hover svg {
    transform: scale(1.1);
}

.projects-panel-close-navbar {
    width: 30px;
    height: 30px;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease;
    font-family: 'Google Sans Code', monospace;
    font-weight: 700;
    box-shadow: 2px 2px 0 #000;
    flex-shrink: 0;
    box-sizing: border-box;
}

.projects-panel-close-navbar:hover {
    background: #f5f5f5;
    color: #000;
    transform: scale(1.1);
}

.projects-panel-close-navbar:active {
    transform: scale(0.9);
}

