/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Container Flexbox */
.main-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
}

/* Left Section */
.left-section {
    flex: 1;
    padding: 20px;
    border-right: 2px solid #ccc;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
}

/* General Profile Picture Section */
.profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

/* Upload Profile Picture Section */
.profile-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.profile-btn-container input[type="file"] {
    padding: 5px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.profile-btn-container button {
    padding: 8px 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.profile-btn-container button:hover {
    background-color: #0056b3;
}



/* Middle Info Section */
.middle-info {
    text-align: center;
    margin: 10px 0;
}

/* About Section */
.about-section {
    text-align: left;
    margin: 10px 0;
}

.about-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.about-section p {
    margin: 5px 0;
}

/* Certifications Section */
.certifications-container {
    margin-top: 10px;
}

.certifications-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.certification-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 2px solid #333;
}

#upload-cert-btn {
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#upload-cert-btn:hover {
    background-color: #0056b3;
}

/* Right Section */
.right-section {
    flex: 1;
    padding: 20px;
}

.price-card {
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

button#book-button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button#book-button:hover {
    background-color: #0056b3;
}