/* Scoped Dashboard Layout */
.profile-image , .cover-image{
    width:200px;
}

.pbp-featured-work-form label {
        display: block;
        margin-top: 15px;
        font-weight: bold;
    }

    .pbp-featured-work-form input[type="text"],
    .pbp-featured-work-form input[type="date"],
    .pbp-featured-work-form input[type="url"],
    .pbp-featured-work-form input[type="file"],
    .pbp-featured-work-form textarea {
        width: 100%;
        max-width: 100%;
        padding: 10px;
        margin-top: 5px;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .pbp-featured-work-form textarea {
        resize: vertical;
        min-height: 100px;
    }

    .pbp-featured-work-form input[type="submit"] {
        margin-top: 15px;
    }
.pbp-dashboard-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.pbp-dashboard-wrapper .pbp-dashboard {
    display: flex;
    flex-wrap: nowrap;
}

/* Sidebar */
.pbp-dashboard-wrapper .pbp-dashboard-sidebar {
    flex: 0 0 250px;
    background: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
}

.pbp-dashboard-wrapper .pbp-sidebar-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ecf0f1;
    text-align: center;
    border-bottom: 1px solid #34495e;
    padding-bottom: 10px;
}

.pbp-dashboard-wrapper .pbp-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pbp-dashboard-wrapper .pbp-sidebar-menu li {
    margin-bottom: 10px;
}

.pbp-dashboard-wrapper .pbp-sidebar-menu li a {
    display: block;
    text-decoration: none;
    color: #ecf0f1;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.pbp-dashboard-wrapper .pbp-sidebar-menu li a.active,
.pbp-dashboard-wrapper .pbp-sidebar-menu li a:hover {
    background-color: #34495e;
}

/* Main Content */
.pbp-dashboard-wrapper .pbp-dashboard-content {
    flex: 1;
    background: #ffffff;
    padding: 20px 30px;
}
/*adding css*/
@media(max-width:576px){
    .extra-container{
        display: block!important;
        padding-bottom: 15px!important;
        
    }
   
}

.pbp-dashboard-wrapper .pbp-content-header h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c3e50;
    /*border-bottom: 2px solid #e74c3c;*/
    padding-bottom: 5px;
}

.pbp-dashboard-wrapper .pbp-content-body {
    font-size: 1rem;
    color: #7f8c8d;
}

/* Form Styling */
.pbp-dashboard-wrapper form {
    margin-top: 20px;
}

.pbp-dashboard-wrapper form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #2c3e50;
}

.pbp-dashboard-wrapper form input[type="text"],
.pbp-dashboard-wrapper form input[type="file"],
.pbp-dashboard-wrapper form input[type="number"],
.pbp-dashboard-wrapper form textarea, 
.pbp-dashboard-wrapper form select{
    width: 100% !important;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    color: #2c3e50;
}

.pbp-dashboard-wrapper form input[type="submit"] {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pbp-dashboard-wrapper form input[type="submit"]:hover {
    background-color: #c0392b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pbp-dashboard-wrapper .pbp-dashboard {
        flex-wrap: wrap;
    }

    .pbp-dashboard-wrapper .pbp-dashboard-sidebar {
        flex: 1 0 100%;
        text-align: center;
    }

    .pbp-dashboard-wrapper .pbp-dashboard-content {
        flex: 1 0 100%;
        padding: 20px;
    }
}


.pbp-profile-form {
    margin-bottom: 20px;
}

.pbp-profile-form label {
    font-weight: bold;
    display: block;
    margin-top: 15px;
}

.pbp-profile-form input[type="text"],
.pbp-profile-form textarea,
.pbp-profile-form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.pbp-profile-form textarea {
    resize: vertical;
}

.pbp-profile-form input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pbp-profile-form input[type="submit"]:hover {
    background-color: #0056b3;
}




 .pbp-profile-form , .pbp-featured-work-form{
              margin: 0 auto;
            padding: 20px;
            background: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .pbp-profile-form h3 {
            margin-bottom: 20px;
            text-align: center;
        }

        .pbp-profile-form label {
            display: block;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .pbp-profile-form input,
        .pbp-profile-form select,
        .pbp-profile-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .pbp-profile-form input[type="file"] {
            padding: 5px;
        }

        .pbp-profile-form button {
            display: block;
            width: 100%;
            padding: 10px;
            background: #0073aa;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }

        .pbp-profile-form button:hover {
            background: #005a87;
        }

        .pbp-profile-photo {
            text-align: center;
        }

        .pbp-profile-photo img {
            border-radius: 50%;
            max-width: 100px;
        }
        
        
        .pbp-featured-work-form button,
.pbp-featured-work-form a {
    display: inline-block;
    padding: 8px 15px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    margin-right: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pbp-featured-work-form .edit-button {
    background-color: #0073aa;
    color: #fff;
    border: 1px solid #0073aa;
}

.pbp-featured-work-form .edit-button:hover {
    background-color: #005177;
    border-color: #005177;
}

.pbp-featured-work-form .delete-button {
    background-color: #dc3232;
    color: #fff;
    border: 1px solid #dc3232;
}

.pbp-featured-work-form .delete-button:hover {
    background-color: #a40000;
    border-color: #a40000;
}

.pbp-featured-work-form .back-button {
    background-color: #f4f4f4;
    color: #555;
    border: 1px solid #ccc;
    margin-top: 20px;
}

.pbp-featured-work-form .back-button:hover {
    background-color: #e5e5e5;
    border-color: #bbb;
}


