/* Parsel Popup Stilleri */

.parcel-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Google Sans Code', monospace;
}

.parcel-popup.active {
    display: flex;
}

.parcel-popup-content {
    background: #fff;
    border: 3px solid #000;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.parcel-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 2px solid #000;
    background: #fff;
}

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

.parcel-popup-close {
    background: none;
    border: 2px solid #000;
    width: 28px;
    height: 28px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.parcel-popup-close:hover {
    background: #000;
    color: #fff;
}

.parcel-popup-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.parcel-info {
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.info-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.info-value {
    font-weight: 700;
    color: #000;
    font-size: 14px;
}

.parcel-project-summary {
    margin-top: 20px;
    padding: 16px;
    background: #f9fafb;
    border: 2px solid #000;
}

.project-summary-header {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    border-bottom: 1px solid #000;
    padding-bottom: 8px;
}

.project-summary-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.project-type {
    font-size: 12px;
    color: #666;
}

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

.progress-bar-small {
    flex: 1;
    height: 6px;
    background: #f3f4f6;
    border: 1px solid #000;
    overflow: hidden;
}

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

.progress-text-small {
    font-size: 11px;
    font-weight: 600;
    color: #000;
    min-width: 35px;
}

.project-status {
    font-size: 12px;
    padding: 4px 8px;
    background: #f3f4f6;
    border: 1px solid #000;
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
}

.parcel-popup-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.parcel-popup-actions .btn-primary {
    flex: 1;
    padding: 10px 20px;
    border: 2px solid #000000;
    border-radius: 0;
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
    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;
    line-height: 1.2;
}

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

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

