* {
    font-family: 'Switzer-Light', sans-serif;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
.header {
    font-family: 'JetBrainsMono-ExtraBold', monospace;
    text-transform: uppercase;
}

main {
    min-height: 92vh;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    max-height: 50px;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
}

.nav-link:hover {
    text-decoration: underline;
}

/* Hero Section */

.title-font-size {
    font-size: 3.5rem;
    font-weight: bold;
}

.hero-text {
    font-size: 1.25rem;
    margin-top: 1rem;
}

.hero-btn {
    margin-top: 2rem;
}

.hero-bg {
    background-image: url(/static/img/about.png);
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 350px;
}

@media (min-width: 576px) {
    .hero-bg {
        background-position: 13px 0;
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .hero-bg {
        background-position: 0 13px;
    }
}

/* About Section */
.about {
    padding: 2rem 0;
    background-color: #3300BF;
    color: white;
}

.about-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    text-align: left;
}

.about-text {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-btn {
    margin-top: 2rem;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    color: white;
}

.expert-profile-section .expert-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.expert-profile-section .expert-profile-details {
    text-transform: uppercase;
}

.expert-profile-section .btn {
    background-color: #3300BF;
}

.expert-profile-section .btn:hover {
    background-color: #3300BF;
}

/* Experts Section */
.experts .expert-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid #000000;
    /* Czarne obramowanie */
    padding: 5px;
    transition: border-color 0.2s ease-in-out;
    /* Animacja na hover */
}

/* Testimonials Section */
.testimonials {
    padding: 2rem 0;
}

.testimonial-box {
    border: 1px solid #e0e0e0;
    padding: 1rem;
    text-align: center;
    border-radius: 5px;
}

/* Logotype */
.logotype {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.logotype img {
    max-width: 40%;
    height: auto;
    filter: grayscale(0%);
    object-fit: contain;
}

.logotype h2 {
    font-size: 1rem;
    /* Rozmiar czcionki dla nagłówka */
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 1rem 0;
}


/* Knowledge Section */
.knowledge-section {
    background-color: #ffffff;
    padding: 2rem 0;
}

.knowledge-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.knowledge-card {
    transition: transform 0.2s ease-in-out;
    /* Efekt hover */
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    /* Ustawia kolumnowy układ */
    justify-content: space-between;
    /* Umożliwia rozłożenie zawartości */
    height: 100%;
    /* Zapewnia pełną wysokość */
    padding: 1rem 1rem 0 1rem;
}

.knowledge-card:hover {
    transform: scale(1.02);
    /* Subtelne powiększenie na hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.knowledge-card-meta-container {
    margin-top: auto;
    /* Umieszcza sekcję autora i daty na dole */
    text-align: left;
    /* Opcjonalnie wyrównanie tekstu do lewej */
}

.knowledge-card-meta::before {
    content: "Autor: ";
}

.knowledge-card-meta {
    font-size: 0.875rem;
    /* Ustawienia stylu */
    color: #999999;
    /* Opcjonalny kolor tekstu */
}

.knowledge-card-more::before {
    content: "Czytaj dalej \2192";
}

.knowledge-card-more {
    padding-top: 0.3rem;
    font-size: 0.875rem;
    /* Ustawienia stylu */
    color: #999999;
    /* Opcjonalny kolor tekstu */
}

.knowledge-card .text-decoration-none {
    color: inherit;
    /* Dziedziczenie koloru linku */
}

.knowledge-img {
    width: 100%;
    /* Szerokość zawsze 100% */
    height: 0;
    /* Wysokość ustawiona przez padding-bottom */
    padding-bottom: 56.25%;
    /* Proporcja 16:9 (9/16 * 100 = 56.25%) */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* Zaokrąglenie rogów */
}

.knowledge-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Wycentrowanie obrazka */
    width: 100%;
    /* Zajmuje całą szerokość */
    height: 100%;
    /* Wypełnia wysokość kontenera */
    object-fit: cover;
    /* Przycięcie obrazu */
}

.knowledge-card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    color: #000000;
    text-transform: uppercase;
    /* font-family: Switzer-Light, sans-serif; */
}

.knowledge-card-excerpt {
    font-size: 1rem;
    margin-bottom: -0.5rem;
    color: #666666;
}

.knowledge-card-meta {
    font-size: 0.7rem;
    color: #999999;
    text-align: left;
}

/* Experts Section */
.experts-section {
    background-color: #ffffff;
    padding: 2rem 0;
}

.experts-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.expert-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    /* Dodano animację */
}

.expert-card:hover {
    transform: scale(1.02);
    /* Subtelne powiększenie */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    /* Większy cień na hover */
}

.expert-card .expert-img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    border: 2px solid #000000;
    /* Czarne obramowanie */
    padding: 5px;
    transition: border-color 0.2s ease-in-out;
    /* Animacja na hover */
}

.expert-card:hover .expert-img {
    border-color: #3300BF;
    /* Zmiana koloru obramowania na hover */
}

.expert-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 0.5rem;
}

.expert-specialization {
    font-size: 1rem;
    color: #666666;
}

/* Login Section */
.login-section {
    background-color: #ffffff;
    min-height: 100vh;
    /* Pełna wysokość widoku */
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.login-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-label {
    font-size: 1rem;
    color: #666666;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
}

.text-primary {
    color: #3300BF;
    text-decoration: none;
}

.text-primary:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    background-color: #000000;
    padding: 2rem 0;
}

.contact-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: left;
    color: #f9f9f9;
}

/*Sekcja z hasłem fundacji*/
.story-section {
    background-color: #3300BF;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.story-title {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
}

/*Zmiania labelek*/

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1.5rem;
}

.contact-form {
    background-color: #000000;
    border: none;
}

.contact-form .form-control {
    background-color: #000000;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    border-radius: 0;
    outline: none;
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
}

.form-control-2 {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-bottom: 1px solid #ffffff;
    border-radius: 0;
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-bottom: 1px solid #ffffff;
}

.contact-form .form-label {
    color: #ffffff;
    font-size: 1rem;
    text-transform: lowercase;
    margin-bottom: 0.5rem;
}

.btn-light {
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
}

/*adres_about*/

.contact-address p {
    text-align: left;
    color: #ffffff;
    font-size: 1rem;
}

.map-container {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

/* Article Section */
.article-section {
    background-color: #ffffff;
    padding: 2rem 0;
}

.article-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.article-meta {
    font-size: 1rem;
    color: #666666;
    text-align: center;
    margin-bottom: 2rem;
}

.article-image {
    text-align: center;
    margin-bottom: 2rem;
}

.article-image img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.article-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1rem;
}

/* Reset Password Section */
.reset-password-section {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.reset-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.reset-instructions {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
}

.form-label {
    font-size: 1rem;
    color: #666666;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
}

.text-primary {
    color: #3300BF;
    text-decoration: none;
}

.text-primary:hover {
    text-decoration: underline;
}

/* Register Section */
.register-section {
    background-color: #ffffff;
    padding: 2rem 0;
}

.register-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Boks konta */
.account-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.account-box:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.account-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3300BF;
    margin-bottom: 0.5rem;
}

.account-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.5;
}


/* Formularze */
.account-form {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.account-form .form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3300BF;
    margin-bottom: 1rem;
}

/* Formularze - pola */
.form-label {
    font-size: 1rem;
    color: #666666;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
}

/* Statystyki */
.stat-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3300BF;
}

.stat-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.stat-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Tabela zamówień */
.table-hover tbody tr:hover {
    background-color: #f5f5f5;
}

.table .badge {
    font-size: 0.9rem;
    padding: 0.4rem 0.7rem;
    border-radius: 12px;
}

/* Portfolio */
.portfolio-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #3300BF;
}

.portfolio-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.portfolio-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Ustawienia usług */
.service-settings-btn {
    background-color: #3300BF;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: background-color 0.2s ease-in-out;
}

.service-settings-btn:hover {
    background-color: #3300BF;
}

/* Powitanie */
.dashboard-section h1 {
    font-size: 2rem;
}

.dashboard-section .expert-img {
    width: 120px;
    height: 120px;
}

/* Order Details */
.order-title {
    font-size: 2rem;
    font-weight: bold;
}

.chat-box {
    background-color: #f9f9f9;
}

.chat-message {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-left: 3px solid #3300BF;
    background-color: #ffffff;
}

.chat-message p {
    margin: 0;
}

.chat-message .small {
    font-size: 0.875rem;
    color: #666666;
}

/* Profile Settings */
.profile-settings-section h1,
h2 {
    font-size: 2rem;
}

.profile-settings-section .form-label {
    font-size: 1rem;
    color: #666666;
}

.profile-settings-section .form-control {
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
}

.profile-settings-section .btn-primary {
    background-color: black;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 20px;
}

.profile-settings-section .btn-primary:hover {
    background-color: black;
}

.profile-settings-section .btn-danger {
    background-color: #BF0000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
}

.profile-settings-section .btn-danger:hover {
    background-color: #8F0000;
}

/* Edit Project */
.edit-project-section h1 {
    font-size: 2rem;
    color: #3300BF;
}

.edit-project-section .form-label {
    font-size: 1rem;
    color: #666666;
}

.edit-project-section .form-control {
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
}

.edit-project-section .list-group-item {
    font-size: 1rem;
}

.edit-project-section .btn-primary {
    background-color: #3300BF;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 20px;
    /*było 8px*/
}

.edit-project-section .btn-primary:hover {
    background-color: #3300BF;
}

.edit-project-section .btn-outline-danger {
    border: 1px solid #BF0000;
    color: #BF0000;
}

.edit-project-section .btn-outline-danger:hover {
    background-color: #BF0000;
    color: #ffffff;
}


/* Service Settings */
.service-settings-section h1,
h2 {
    font-size: 2rem;
}

.service-settings-section .form-label {
    font-size: 1rem;
    color: #666666;
}

.service-settings-section .form-control,
.service-settings-section .form-select {
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
}

.service-settings-section .btn-primary {
    background-color: #3300BF;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 20px;
    /*było 8px*/
}

.service-settings-section .btn-primary:hover {
    background-color: #3300BF;
}

.service-settings-section .btn-outline-danger {
    border: 1px solid #BF0000;
    color: #BF0000;
}

.service-settings-section .btn-outline-danger:hover {
    background-color: #BF0000;
    color: #ffffff;
}

.service-settings-section .btn-outline-primary {
    border: 1px solid #3300BF;
    color: #3300BF;
}

.service-settings-section .btn-outline-primary:hover {
    background-color: #3300BF;
    color: #ffffff;
}


/* Edit Service */
.edit-service-section h1 {
    font-size: 2rem;
}

.edit-service-section .form-label {
    font-size: 1rem;
    color: #666666;
}

.edit-service-section .form-control,
.edit-service-section .form-select {
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
}

.edit-service-section .btn-primary {
    background-color: #3300BF;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 20px;
    /* było 8px */
}

.edit-service-section .btn-primary:hover {
    background-color: #3300BF;
}

.edit-service-section .btn-secondary {
    border: 1px solid #666666;
    color: #666666;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
}

.edit-service-section .btn-secondary:hover {
    background-color: #e0e0e0;
    color: #000000;
}


/* Add Project */
.add-project-section h1 {
    font-size: 2rem;
    color: #3300BF;
}

.add-project-section .form-label {
    font-size: 1rem;
    color: #666666;
}

.add-project-section .form-control {
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
}

.add-project-section .btn-primary {
    background-color: #3300BF;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 20px;
    /* było 8px */
}

.add-project-section .btn-primary:hover {
    background-color: #3300BF;
}

.add-project-section .btn-secondary {
    border: 1px solid #666666;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
}

.add-project-section .btn-secondary:hover {
    background-color: #e0e0e0;
    color: #000000;
}


/*client_verification_email*/


/* Verification Section */
.client-verification-section {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-verification-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.client-verification-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.client-verification-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.client-verification-message {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1rem;
}

.client-verification-instructions {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 2rem;
}

.client-verification-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.client-verification-link:hover {
    text-decoration: underline;
    color: #3498db
}

.client-verification-note {
    font-size: 0.875rem;
    color: #999999;
    margin-bottom: 1rem;
}

.client-verification-signature {
    font-size: 1rem;
    color: #666666;
    margin-top: 2rem;
}

p {
    margin: 10px 0;
    text-align: center;
}

a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #2980b9;
}

.client_verification-container {
    max-width: 600px;
    margin: 40px auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* creator_verification_email */
.verification-section {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.verification-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.verification-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.verification-message {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1rem;
}

.verification-instructions {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 2rem;
}

.verification-link {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
}

.verification-link:hover {
    text-decoration: underline;
    color: #3498db;
}

.verification-note {
    font-size: 0.875rem;
    color: #999999;
    margin-bottom: 1rem;
}

.verification-signature {
    font-size: 1rem;
    color: #666666;
    margin-top: 2rem;
}

p {
    margin: 10px 0;
    text-align: left;
}

a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #2980b9;
}

.client_verification-container {
    max-width: 600px;
    margin: 40px auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/*password_reset_email.html*/
.reset-password-section {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.reset-password-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.reset-password-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.reset-password-message {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1rem;
}

.reset-password-instructions {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 2rem;
}

.reset-password-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.reset-password-link:hover {
    text-decoration: underline;
    color: #3498db;
}

.reset-password-note {
    font-size: 0.875rem;
    color: #999999;
    margin-bottom: 1rem;
}

.reset-password-signature {
    font-size: 1rem;
    color: #666666;
    margin-top: 2rem;
}

/*client_details_confirmed*/
.profile-completion-section {
    background-color: #f7f7f7;
    padding: 50px 0;
}

.profile-completion-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.profile-completion-message {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.profile-completion-btn {
    font-size: 1.1rem;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.profile-completion-btn:hover {
    background-color: #2980b9;
}

/*verify_email_required*/
.email-verification-section {
    background-color: #f7f7f7;
    padding: 50px 0;
}

.email-verification-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.email-verification-message,
.email-verification-instructions,
.email-verification-note {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.email-verification-instructions strong,
.email-verification-note strong {
    color: #34495e;
}

/* new-password-section */
.new-password-section {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.new-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.new-password-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.new-password-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.new-password-title-message {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
}

.new-password-note {
    font-size: 0.875rem;
    color: #999999;
    margin-top: 2rem;
}

/* reset-password-note-section */
.reset-password-note-section {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.reset-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.reset-password-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.reset-password-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.reset-password-instructions {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
}

.reset-password-link {
    font-size: 1rem;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.reset-password-link:hover {
    text-decoration: underline;
    color: #3498db;
}


/* password */
.password-section {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.password-card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.password-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.password-requirements {
    text-align: left;
    margin-bottom: 1.5rem;
    color: #666666;
    font-size: 0.9rem;
}

.password-verification-note {
    font-size: 0.875rem;
    color: #999999;
    margin-top: 1rem;
}

.btn-primary {
    background-color: #000000;
    border-radius: 20px;
    border: black;
}

.btn-primary:hover {
    background-color: #000000;
}

/*logout*/
.profile-completion-section {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.profile-completion-title {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.profile-completion-btn {
    display: inline-block;
    background-color: #3300BF;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.profile-completion-btn:hover {
    background-color: #3300BF;
    color: #ffffff;
    text-decoration: none;
}

img {
    filter: grayscale(100%);
}

/* verify_creator_info */
.profile-verification-section {
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Wyśrodkowanie pionowe */
    align-items: center;
    /* Wyśrodkowanie poziome */
    height: 80vh;
    padding: 20px;
    /* Dodatkowy odstęp wewnętrzny dla mniejszych ekranów */
    text-align: center;
    box-sizing: border-box;
}

.profile-verification-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.profile-verification-message,
.profile-verification-instructions,
.profile-verification-note,
.profile-verification-contact {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Responsywność dla mniejszych ekranów - wyłączyć jeśli nie pasuje*/
@media (max-width: 768px) {
    .profile-verification-title {
        font-size: 2rem;
    }

    .profile-verification-message,
    .profile-verification-instructions,
    .profile-verification-note,
    .profile-verification-contact {
        font-size: 1rem;
    }
}

/*verify_creator_accept_info.html*/
.verify-creator-accept-info {
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 79.5vh;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.creator-activation-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.creator-activation-message,
.creator-activation-instructions,
.creator-activation-note {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

/* Responsywność dla mniejszych ekranów */
@media (max-width: 768px) {
    .creator-activation-title {
        font-size: 2rem;
    }

    .creator-activation-message,
    .creator-activation-instructions,
    .creator-activation-note {
        font-size: 1rem;
    }
}

/* verify-creator-refuse-info  */
.verify-creator-refuse-info {
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 81vh;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.creator-refusal-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #c0392b;
    margin-bottom: 20px;
}

.creator-refusal-message,
.creator-refusal-instructions,
.creator-refusal-contact {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.creator-refusal-instructions strong,
.creator-refusal-contact strong {
    color: #c0392b;
}

@media (max-width: 768px) {
    .creator-refusal-title {
        font-size: 2rem;
    }

    .creator-refusal-message,
    .creator-refusal-instructions,
    .creator-refusal-contact {
        font-size: 1rem;
    }
}

/* Order to Accept Details */
.order-to-accept-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.order-to-accept-chat-box {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.order-to-accept-chat-message {
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-left: 4px solid #3300BF;
    background-color: #ffffff;
    border-radius: 3px;
}

.order-to-accept-chat-message p {
    margin: 0;
}

.order-to-accept-chat-message .small {
    font-size: 0.875rem;
    color: #666666;
}

.order-to-accept-actions {
    margin-bottom: 2rem;
    text-align: center;
}

.order-to-accept-actions .btn-success {
    background-color: #28a745;
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
}

.order-to-accept-actions .btn-success:hover {
    background-color: #218838;
}

.order-to-accept-actions .btn-danger {
    background-color: #dc3545;
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
}

.order-to-accept-actions .btn-danger:hover {
    background-color: #c82333;
}

form .btn-primary {
    background-color: #3300BF;
    border-radius: 5px;
}

form .btn-primary:hover {
    background-color: #3300BF;
}

.order-to-accept-status select {
    width: 50%;
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
}

.order-to-accept-panel .form-label {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.order-to-accept-panel .form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 0.5rem;
}

.order-to-accept-panel .btn-primary {
    background-color: #3300BF;
    border: none;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
}

.order-to-accept-panel .btn-primary:hover {
    background-color: #3300BF;
}

/* refuse_order*/
.refuse-order-section {
    background-color: #f9f9f9;
    padding: 3rem 0;
}

.order-summary {
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.order-summary-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
}

.order-summary p {
    margin-bottom: 0.5rem;
    color: #555;
}

.order-summary strong {
    color: #000;
}

/* Formularz refuse */
.refuse-form {
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.refuse-form h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.refuse-form p {
    color: #666;
    margin-bottom: 1.5rem;
}

.refuse-form .form-label {
    font-weight: bold;
    color: #333;
}

.refuse-form .form-select,
.refuse-form textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 1rem;
    color: #333;
}

.refuse-form .form-select:focus,
.refuse-form textarea:focus {
    border-color: #3300BF;
    box-shadow: 0 0 5px rgba(217, 83, 79, 0.5);
    outline: none;
}

.refuse-form button {
    background-color: #3300BF;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    padding: 0.75rem;
    transition: background-color 0.3s ease;
}

.refuse-form button:hover {
    background-color: #3300BF;
}

/* Alert Informacyjny */
.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    padding: 1rem;
    margin-top: 2rem;
}

.alert-warning p {
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    padding: 8px 0;
    margin-bottom: 20px;
    list-style: none;
}

.breadcrumb-item {
    padding-left: 0 !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    padding: 0 5px;
    color: #ffffff;
}

.breadcrumb-item a {
    text-decoration: none;
    text-transform: uppercase;
    color: #ffffff;
}

.breadcrumb-item.active {
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/*Zmienione Share Your Story Section */
/* Find Your Story Section */
.find-your-story {
    background-color: #fff;
    padding: 3rem 0;
}

.story-img {
    background-image: url(/static/img/let_others_find_you.png);
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 350px;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .story-img {
        background-position: 13px 0;
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .story-img {
        background-position: 13px 13px;
    }
}

.find-title {
    text-align: left;
}

.find-subtitle {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.find-steps {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    line-height: 1.8;
}

.find-steps li {
    margin-bottom: 0.5rem;
}

.find-steps li::before {
    content: '→'
}

/* Share Your Story Section */
.share-your-story .story-img {
    width: 50%;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.storytellers-bg {
    color: #fff;
    padding: 3rem 0;
    background-color: rgba(0, 0, 0, 0.4);
    position: relative;
}

.storytellers-bg::before {
    background-image: url('/static/img/find_your_storytellers.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
}

.share-your-story {
    flex: 1;
    padding-left: 2rem;
}

.story-text-tittle {
    font-size: 1rem;
}

.share-your-story {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-text h2 {
    text-align: left;
    font-size: 1.5rem;
}

.share-your-story .btn {
    border-radius: 20px;
    font-size: 1rem;
}

/* Rejestracja */
.register-description-list {
    margin: 0;
    text-align: left;
    color: #666666
}

.register-description-list li {
    margin: 0.25rem 0;
}

.link-more::after {
    content: '→';
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #fff;
}

/*Kolor informacji z głównej strony*/ 
.info-title {
    color:#3300BF;
}

/*Kolor dla tekstu - panel autora i branży */
.blue-link {
    color: #3498db !important;
}