/* Główny kontener formularza */
.opu-form-container {
    max-width: 700px;
    margin: 20px auto;
    padding: 0;
}

/* Sekcja przewodnika procesu */
.opu-process-guide {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.opu-guide-header {
    text-align: center;
    margin-bottom: 2rem;
}

.opu-guide-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.opu-guide-icon {
    font-size: 1.5rem;
}

.opu-guide-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
}

.opu-steps-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.opu-step {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.opu-step:hover {
    border-color: #007cba;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.1);
    transform: translateY(-2px);
}

.opu-step-final {
    background: linear-gradient(135deg, #d4edda 0%, #f8fff9 100%);
    border-color: #28a745;
}

.opu-step-final:hover {
    border-color: #20c997;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.opu-step-number {
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.3);
}

.opu-step-final .opu-step-number {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.opu-step-content {
    flex: 1;
}

.opu-step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.opu-step-description {
    color: #495057;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.opu-step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.opu-guide-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #dee2e6;
}

.opu-important-note {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #856404;
    font-weight: 500;
}

.opu-note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Sekcje z numerami - główne boksy */
.opu-section-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 0;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.opu-section-box:hover {
    border-color: #007cba;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.1);
    transform: translateY(-2px);
}

.opu-section-header {
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.opu-section-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.opu-section-info {
    flex: 1;
}

.opu-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.5rem 0;
}

.opu-section-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    font-size: 1rem;
}

.opu-section-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    opacity: 0.8;
}

/* Zawartość wewnątrz sekcji */
.opu-section-box .opu-field-group,
.opu-section-box .opu-projects-section,
.opu-section-box .opu-signing-instructions,
.opu-section-box .opu-next-steps,
.opu-section-box .opu-contact-info,
.opu-section-box #opu-ufb-upload-box {
    padding: 1.5rem;
}

/* Sekcja finalna - zielona */
.opu-section-final {
    background: linear-gradient(135deg, #d4edda 0%, #f8fff9 100%);
    border-color: #28a745;
}

.opu-section-final:hover {
    border-color: #20c997;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.opu-section-header-final {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
}

.opu-section-number-final {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Instrukcje podpisywania */
.opu-signing-instructions {
    background: #fff;
    border-top: 1px solid #dee2e6;
}

.opu-signing-instructions h4 {
    color: #2c3e50;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.opu-signing-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.opu-signing-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.3);
}

.opu-signing-link:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.4);
    color: white;
    text-decoration: none;
}

/* Główny przycisk podpisywania */
.opu-main-signing-link {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.opu-main-signing-link:hover {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%) !important;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

/* Proces podpisywania */
.opu-signing-process {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.opu-signing-process ol {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.opu-signing-process li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.opu-signing-process li:last-child {
    font-weight: 600;
    color: #dc3545;
}

/* Ważne przypomnienie */
.opu-important-reminder {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.opu-important-reminder p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

/* Style dla formularza upload */
.opu-upload-form {
    padding: 1.5rem;
}

.opu-upload-form h4 {
    color: #2c3e50;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.opu-file-input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.opu-file-input {
    padding: 0.75rem;
    border: 2px solid #007cba;
    border-radius: 4px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.opu-file-input:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

/* Ujednolicenie przycisków upload z przyciskiem PDF */
.opu-upload-form .opu-submit-button {
    background: linear-gradient(135deg, #357ab8 0%, #2c5aa0 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(53, 122, 184, 0.3);
}

.opu-upload-form .opu-submit-button:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 122, 184, 0.4);
}

.opu-upload-result {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-weight: 500;
}

.opu-upload-result:empty {
    display: none;
}

@media (max-width: 768px) {
    .opu-file-input-group {
        gap: 0.75rem;
    }
}

/* Style dla iframe gov.pl */
.opu-iframe-container {
    margin: 1.5rem 0;
    border: 2px solid #007cba;
    border-radius: 8px;
    overflow: hidden;
}

.opu-iframe-container h4 {
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    margin: 0;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.opu-iframe-wrapper {
    position: relative;
    background: #f8f9fa;
    min-height: 600px;
}

.opu-iframe-wrapper iframe {
    border: none;
    display: block;
    background: white;
}

.opu-iframe-note {
    background: #fff3cd;
    border-top: 1px solid #ffeaa7;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #856404;
}

.opu-iframe-note a {
    color: #007cba;
    text-decoration: underline;
    font-weight: 500;
}

.opu-iframe-note a:hover {
    color: #0056b3;
}

@media (max-width: 768px) {
    .opu-iframe-wrapper {
        min-height: 500px;
    }
    
    .opu-iframe-wrapper iframe {
        height: 500px;
    }
}

/* Style dla baneru motywacyjnego */
.opu-motivation-banner {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 0 0 2rem 0;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    text-align: center;
}

.opu-motivation-content {
    color: white;
}

.opu-motivation-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.opu-motivation-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.opu-motivation-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.opu-motivation-call {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1rem 0 0 0;
}

@media (max-width: 768px) {
    .opu-motivation-banner {
        padding: 1.5rem;
    }
    
    .opu-motivation-title {
        font-size: 1.5rem;
    }
    
    .opu-motivation-text,
    .opu-motivation-call {
        font-size: 1rem;
    }
    
    .opu-motivation-highlight {
        font-size: 1.1rem;
    }
}

/* Style dla sekcji następnych kroków */
.opu-next-steps {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.opu-next-steps h4 {
    color: #2c3e50;
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
}

.opu-next-steps ul {
    margin: 0;
    padding-left: 1.5rem;
}

.opu-next-steps li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Style dla informacji kontaktowych */
.opu-contact-info {
    background: #e7f3ff;
    border: 2px solid #007cba;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.opu-contact-info h4 {
    color: #2c3e50;
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
}

.opu-contact-info p {
    margin: 0.25rem 0;
}

.opu-contact-info a {
    color: #007cba;
    text-decoration: none;
    font-weight: 600;
}

.opu-contact-info a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsywność dla przewodnika */
@media (max-width: 768px) {
    .opu-process-guide {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .opu-guide-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .opu-guide-subtitle {
        font-size: 1rem;
    }
    
    .opu-steps-overview {
        gap: 0.25rem;
    }
    
    .opu-step-mini {
        min-width: 60px;
        padding: 0.25rem;
    }
    
    .opu-step-mini-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .opu-step-mini span {
        font-size: 0.65rem;
    }
    
    .opu-step-arrow {
        font-size: 1rem;
    }
    
    .opu-step-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .opu-step-number-large {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .opu-step-title-large {
        font-size: 1.2rem;
    }
    
    .opu-step-desc-large {
        font-size: 0.9rem;
    }
    
    .opu-step-icon-large {
        font-size: 2rem;
    }
    
    .opu-important-note {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Style dla pól formularza - KLUCZOWA ZMIANA NA 1MM ODSTĘPU */
.opu-field-group {
    margin-bottom: 1mm; /* Dokładnie 1mm odstępu między polami */
}

.opu-field-group input[type="text"]:not([readonly]),
.opu-field-group input[type="email"]:not([readonly]),
.opu-field-group input[type="tel"]:not([readonly]),
.opu-field-group textarea:not([readonly]) {
    border: 2px solid #007cba !important;
    border-radius: 0 !important;
    padding: 0.75rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    display: block; /* Zapewnia, że pola będą w oddzielnych liniach */
}

.opu-field-group label {
    display: inline-block; /* Label obok pola formularza */
    margin-bottom: 0; /* Brak dodatkowego marginesu pod labelami */
    margin-right: 10px; /* Odstęp między labelami i polami */
    font-weight: 600;
    color: #2c3e50;
    vertical-align: top; /* Wyrównanie do góry */
    width: auto; /* Automatyczna szerokość labela */
    min-width: 80px; /* Minimalna szerokość dla wyrównania */
}

/* Kontener dla labela i pola obok siebie */
.opu-field-group {
    display: flex;
    align-items: flex-start;
    gap: 10px; /* 10px odstęp między labelami a polami */
    margin-bottom: 1mm; /* 1mm odstęp między grupami pól */
}

.opu-field-group label {
    flex-shrink: 0; /* Label nie będzie się kurczył */
    min-width: 100px; /* Stała szerokość labeli dla wyrównania */
    margin: 0;
    padding-top: 0.75rem; /* Wyrównanie z padding pola input */
    line-height: 1;
}

.opu-field-group input,
.opu-field-group textarea {
    flex: 1; /* Pole zajmie pozostałą przestrzeń */
    margin: 0;
}

/* Style dla pól tylko do odczytu (Sopot, dzielnica, osiedle) */
.opu-field-group input[readonly] {
    background-color: #f8f9fa !important;
    border: 1px solid #ddd !important;
    color: #6c757d !important;
}

/* Komunikaty */
.opu-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 500;
}

.opu-message.opu-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.opu-message.opu-submit-button:hover {
    background-color: #0056b3;
}

.opu-pdf-section {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.opu-pdf-button {
    background-color: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.opu-pdf-button:hover {
    background-color: #0056b3;
}

/* Nowa sekcja projektów */
.opu-projects-section {
    margin-bottom: 2rem;
}

.opu-projects-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.opu-icon-projects {
    font-size: 1.2rem;
}

.opu-projects-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.opu-projects-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Style dla belek projektów */
.opu-project-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

.opu-project-bar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #007cba;
}

.opu-project-bar.supported {
    background: linear-gradient(135deg, #d4edda 0%, #f8fff9 100%);
    border-color: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.opu-project-checkbox-hidden {
    display: none;
}

.opu-project-main {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    gap: 1rem;
}

.opu-project-type-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    min-width: 120px;
    justify-content: center;
    text-align: center;
}

.opu-type-icon {
    font-size: 1.1rem;
}

.opu-project-content {
    flex: 1;
    min-width: 0;
}

.opu-project-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.opu-project-keyword {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
    background: rgba(108, 117, 125, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.opu-project-actions {
    display: flex;
    align-items: flex-start;
}

.opu-actions-column {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: stretch;
    min-width: 130px;
}

/* Przycisk POPIERAM */
.opu-support-btn {
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    height: 44px;
}

.opu-support-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

.opu-support-btn.supported {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    animation: supportSuccess 0.5s ease-out;
}

@keyframes supportSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Przycisk SZCZEGÓŁY */
.opu-details-btn {
    background: transparent;
    color: #6c757d;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    height: 44px;
}

.opu-details-btn:hover {
    background: #f8f9fa;
    border-color: #007cba;
    color: #007cba;
}

.opu-details-btn.expanded {
    background: #f8f9fa;
    border-color: #007cba;
    color: #007cba;
}

/* Sekcja szczegółów */
.opu-project-details {
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.opu-details-content {
    padding: 1.5rem;
}

.opu-details-content h5 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.opu-details-content p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.opu-detail-item {
    margin-bottom: 0.5rem;
    color: #495057;
}

.opu-detail-item strong {
    color: #2c3e50;
}

/* Sekcja pomocy */
.opu-projects-help {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.opu-projects-help p {
    margin: 0.5rem 0;
    color: #1565c0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.opu-projects-help p:first-child {
    margin-top: 0;
}

.opu-projects-help p:last-child {
    margin-bottom: 0;
}

/* Kolory dla różnych typów projektów */
.opu-project-type-uchwala .opu-project-type-badge {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
    border: 1px solid #90caf9;
}

.opu-project-type-konsultacje .opu-project-type-badge {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    color: #7b1fa2;
    border: 1px solid #ce93d8;
}

.opu-project-type-skarga .opu-project-type-badge {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.opu-project-type-wniosek .opu-project-type-badge {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.opu-project-type-petycja .opu-project-type-badge {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #ef6c00;
    border: 1px solid #ffcc02;
}

/* Efekt zaznaczenia karty */
.opu-project-card.selected .opu-project-title {
    color: #007cba;
}

/* Responsywność */
@media (max-width: 768px) {
    .opu-project-main {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }
    
    .opu-project-type-badge {
        min-width: auto;
        align-self: flex-start;
    }
    
    .opu-actions-column {
        min-width: auto;
        width: 100%;
    }
    
    .opu-projects-title {
        font-size: 1.3rem;
    }
    
    .opu-project-title {
        font-size: 1rem;
    }
    
    /* Responsywność dla pól formularza na urządzeniach mobilnych */
    .opu-field-group {
        flex-direction: column; /* Na małych ekranach label nad polem */
        gap: 2px; /* Mniejszy odstęp na mobile */
    }
    
    .opu-field-group label {
        min-width: auto;
        padding-top: 0;
        margin-bottom: 2px;
    }
}