        :root {
            --primary-color: #3273dc;
            --secondary-color: #209cee;
            --dark-color: #363636;
            --light-color: #f5f5f5;
        }
  
        .hero {
            background: rgba(0,0,0,0) !important;
            padding-top: 2rem;
            
        }
        
        .dashboard-card {
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .dashboard-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .card-header {
            background-color: var(--light-color);
            border-bottom: 1px solid #e1e1e1;
        }
        
        .icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            border-radius: 50%;
            margin-bottom: 1rem;
        }
        
        .icon-wrapper i {
            font-size: 1.5rem;
            color: white;
        }
        
        .user-info {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .title.section-title {
            position: relative;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .title.section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .content-area {
            padding: 2rem 0;
        }
        
        @media screen and (max-width: 768px) {
            .column {
                padding: 0.5rem;
            }
        }


        .queue-progress {
            max-width: 600px;
            margin: 0 auto;
            display: none;
        }
        .hidden {
            display: none;
        }
        .fixed-button {
            min-width: 160px;
        }
        .script-container {
            max-height: 300px;
            overflow-y: auto;
        }
        #progressModal .modal-card {
            width: 80%;
            max-width: 600px;
        }
        .content pre {
            white-space: pre-wrap;
        }

        .file-card {
          border: 1px solid #e9e9e9;
          border-radius: 6px;
          transition: all 0.2s ease;
          background-color: #fff;
          overflow: hidden;
          height: 100%;
          display: flex;
          flex-direction: column;
        }

        /* Subtelniejszy efekt hover */
        .file-card:hover {
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
          transform: translateY(-2px);
          border-color: #ddd;
        }

        /* Zawartość karty */
        .file-card .card-content {
          padding: 1.25rem;
          flex: 1;
          display: flex;
          flex-direction: column;
        }

        /* Sekcja mediów z ikoną i nazwą pliku */
        .file-card .media {
          align-items: center;
          margin-bottom: 0.75rem;
          gap: 0.5rem;
        }

        .file-card .media-left {
          margin-right: 0.75rem;
        }

        .file-card .media-content {
          overflow: hidden;
        }

        /* Tytuł pliku */
        .file-card .title.is-5.file-name {
          font-size: 0.95rem;
          font-weight: 600;
          margin-bottom: 0.25rem;
          word-break: break-word;
          line-height: 1.3;
        }

        /* Rozmiar pliku */
        .file-card .subtitle.is-6 {
          font-size: 0.85rem;
          opacity: 0.8;
          margin-bottom: 0.25rem;
        }

        /* Data */
        .file-card .is-size-7.has-text-grey {
          font-size: 0.75rem;
        }

        /* Treść z tagami i kategorią */
        .file-card .content {
          margin-top: auto;
          padding-top: 0.75rem;
          border-top: 1px solid #f5f5f5;
          font-size: 0.8rem;
        }

        /* Stopka karty */
        .file-card .card-footer {
          background-color: #fafafa;
          border-top: 1px solid #f0f0f0;
          display: flex;
        }

        .file-card .card-footer-item {
          padding: 0.75rem;
          flex: 1;
          display: flex;
          justify-content: center;
          transition: background-color 0.2s;
        }

        .file-card .card-footer-item:hover {
          background-color: #f5f5f5;
        }

        /* Ikony w stopce */
        .file-card .card-footer-item .icon {
          margin: 0;
          color: #777;
        }

        .file-card .card-footer-item:hover .icon {
          color: #333;
        }

        /* Efekt najeżdżania na przyciski */
        .file-card .card-footer-item.delete-file:hover {
          background-color: #fff5f5;
        }

        .file-card .card-footer-item.preview-file:hover {
          background-color: #f5f9ff;
        }

        .file-card .card-footer-item:hover .has-text-danger {
          color: #ff3860 !important;
        }

        /* Style dla trybu ciemnego */
        body.dark-mode .file-card {
          background-color: #2a2a2a;
          border-color: #444;
        }

        body.dark-mode .file-card:hover {
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
          border-color: #555;
        }

        body.dark-mode .file-card .title.is-5.file-name {
          color: #e0e0e0;
        }

        body.dark-mode .file-card .subtitle.is-6 {
          color: #bbb;
        }

        body.dark-mode .file-card .content {
          border-top-color: #444;
        }

        body.dark-mode .file-card .card-footer {
          background-color: #333;
          border-top-color: #444;
        }

        body.dark-mode .file-card .card-footer-item:hover {
          background-color: #3a3a3a;
        }

        body.dark-mode .file-card .card-footer-item .icon {
          color: #aaa;
        }

        body.dark-mode .file-card .card-footer-item:hover .icon {
          color: #ddd;
        }

        body.dark-mode .file-card .card-footer-item.delete-file:hover {
          background-color: #3d2a2a;
        }

        body.dark-mode .file-card .card-footer-item.preview-file:hover {
          background-color: #2a3a4d;
        }

        .progress-wrapper {
            position: relative;
        }
        .progress-value {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        .disk-usage-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 40;
            height: 5px;
            background-color: #f5f5f5;
        }
        .disk-usage-fill {
            height: 100%;
            background-color: #00d1b2;
            transition: width 0.5s ease;
        }
        .modal-card {
            max-width: 90%;
        }
        .upload-dropzone {
            border: 2px dashed #dbdbdb;
            border-radius: 5px;
            padding: 2rem;
            text-align: center;
            transition: background-color 0.3s ease;
        }
        .upload-dropzone.is-dragover {
            background-color: rgba(0, 209, 178, 0.1);
            border-color: #00d1b2;
        }
        .preview-container {
            max-height: 100%;
            overflow: auto;
        }
        .file-action-buttons {
            display: flex;
            gap: 0.5rem;
        }
        .cancel-upload-btn {
            margin-top: 1rem;
        }
        .upload-speed-info {
            margin-top: 0.5rem;
            font-size: 0.9rem;
            color: #666;
        }

        .containerElement_1 {
          border: 1px solid rgb(87 107 120);
          padding: 20px;
          background: rgb(74 90 104);
          border-radius: 5px;
        }

        @media screen and (max-width: 768px) {
            .column {
                padding: 0.5rem;
            }
        }