    .error-container {
        max-width: 600px;
        margin: 50px auto;
        padding: 40px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        text-align: center;
        border-top: 5px solid rgb(255, 133, 0);
    }

    .error-icon {
        font-size: 60px;
        color: rgb(255, 133, 0);
        margin-bottom: 20px;
        display: inline-block;
    }

    .error-title {
        color: #212529;
        font-size: 2rem;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .error-message {
        color: #6c757d;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .btn-home {
        background-color: rgb(30, 188, 161);
        color: white;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .btn-home:hover {
        background-color: #179c85;
    }

    .technical-details {
        margin-top: 30px;
        text-align: left;
        border: 1px solid #e9ecef;
        border-radius: 6px;
        overflow: hidden;
    }

    .details-toggle {
        display: block;
        width: 100%;
        padding: 15px;
        background: #f1f3f5;
        border: none;
        text-align: left;
        cursor: pointer;
        color: #212529;
        font-weight: 600;
        outline: none;
        font-size: 0.9rem;
    }

    .details-toggle:after {
        content: '+';
        float: right;
        font-weight: bold;
    }

    #toggle-check {
        display: none;
    }
    
    #toggle-check:checked ~ .error-code-block {
        display: block;
    }
    
    #toggle-check:checked ~ .details-toggle:after {
        content: '-';
    }

    .error-code-block {
        display: none;
        padding: 15px;
        background: #2d2d2d;
        color: #f8f8f2;
        font-family: 'Courier New', Courier, monospace;
        font-size: 0.85rem;
        margin: 0;
        overflow-x: auto;
        white-space: pre-wrap;
    }

    .content-wrapper {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .public-error-container {
        max-width: 550px;
        width: 100%;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        text-align: center;
        overflow: hidden;
    }

    .accent-bar {
        height: 6px;
        background: linear-gradient(to right, rgb(255, 133, 0), rgb(30, 188, 161));
        width: 100%;
    }

    .error-content-padding {
        padding: 40px;
    }

    .error-icon-public {
        color: rgb(30, 188, 161);
        margin-bottom: 25px;
    }

    .error-title-public {
        color: #212529;
        font-size: 2.2rem;
        margin: 0 0 15px 0;
        font-weight: 800;
    }

    .error-message-public {
        color: #6c757d;
        font-size: 1.15rem;
        line-height: 1.6;
        margin-bottom: 35px;
    }

    .action-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .error-btn {
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
        border: 2px solid transparent;
    }

    .error-btn-primary {
        background-color: rgb(30, 188, 161);
        color: white;
    }

    .error-btn-primary:hover {
        background-color: #179c85;
        box-shadow: 0 4px 10px rgba(30, 188, 161, 0.3);
    }

    .error-btn-secondary {
        background-color: transparent;
        border-color: #212529;
        color: #212529;
    }

    .error-btn-secondary:hover {
        background-color: #212529;
        color: white;
    }
