.containerj {
    display: flex;
    flex-direction: row; /* Row layout on larger screens */
}

.sidebarj {
    width: 25%; /* Sidebar width */
    padding: 20px;
    background-color: transparent;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.main-contentj {
    width: 75%; /* Main content width */
    padding: 20px;
}

/* Tab button styles */
.tab-buttonj {
    padding: 10px 20px;
    border: none; /* Remove border */
    background: none;
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px; 
    color: #000;
}
 /* Royal Button Styles */
.btn-royal {
    color: #fff; /* White text */
    background-color: #8f64a2; /* Royal base color */
    border: 1px solid #8f64a2; /* Royal border */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-royal:hover,
.btn-royal:focus,
.btn-royal:active,
.btn-royal.active,
.btn-royal:focus-visible {
    color: #fff; /* White text on hover */
    background-color: #d96ba1; /* Pinker color on hover */
    border-color: #d96ba1; /* Pinker border on hover */
    
}

.btn-royal:disabled,
.btn-royal.disabled {
    color: #fff; /* White text */
    background-color: #8f64a2; /* Royal base color */
    border-color: #8f64a2; /* Royal border */
    opacity: 0.65; /* Disabled opacity */
    cursor: not-allowed; /* Disabled cursor */
}

/* Pinker Button Styles */
.btn-pinker {
    color: #fff; /* White text */
    background-color: #d96ba1; /* Pinker base color */
    border: 1px solid #d96ba1; /* Pinker border */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-pinker:hover,
.btn-pinker:focus,
.btn-pinker:active,
.btn-pinker.active,
.btn-pinker:focus-visible {
    color: #fff; /* White text on hover */
    background-color: #8f64a2; /* Royal color on hover */
    border-color: #8f64a2; /* Royal border on hover */
   
}

.btn-pinker:disabled,
.btn-pinker.disabled {
    color: #fff; /* White text */
    background-color: #d96ba1; /* Pinker base color */
    border-color: #d96ba1; /* Pinker border */
    opacity: 0.65; /* Disabled opacity */
    cursor: not-allowed; /* Disabled cursor */
}

.tab-buttonj:hover{ 
    text-decoration: none; /* Remove border */ 
    color: #F4BB44; /* Optional: change color on hover */
}
/* Active tab button styles */
.tab-buttonj.active {
    border: none; /* Ensure no border when active */
    border-bottom: 1px solid #d96ba1; /* Add bottom border for active tab */
    font-weight: bold;
}

/* Tab content styles */
.tab-contentj {
    padding: 20px 0;
}

/* Hover effect for tab buttons (optional) */
.tab-buttonj:hover {
    color: #d96ba1; /* Optional: change color on hover */
}

h1, h2, p, ul {
    margin: 0 0 15px;
}

ul {
    padding-left: 20px;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

/* Input fields styles */
form input[type="text"],
form input[type="email"],
form input[type="name"],
form input[type="url"],
form input[type="number"],
form input[type="file"],
form textarea {
    width: 100%; /* Full width */
    padding: 8px; /* Consistent padding */
    box-sizing: border-box; /* Include padding and border in the element's total width/height */
    border: none; /* Remove all borders */
    border: 1px solid #CCC; /* Add subtle border */
    outline: none; /* Remove outline when focused */
    resize: vertical; /* Allow vertical resizing only */
}

/* Add focus effect */
form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="name"]:focus,
form input[type="url"]:focus,
form input[type="number"]:focus,
form input[type="file"]:focus,
form textarea:focus {
    border-color: #d96ba1; /* Highlighted border color */
    box-shadow: 0 0 5px #d96ba1; /* Add a subtle glow effect */
}

/* Optional: Adjust textarea's default height */
form textarea {
    min-height: 100px; /* Default height */
    max-height: 300px; /* Maximum height */
}


form input[type="submit"] {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #d96ba1;
    border: none;
    color: #fff;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #F4BB44;
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 768px) {
    .containerj {
        flex-direction: column; /* Stack elements vertically on mobile */
    }
h1, h2, p, ul {
    margin: 0 0 13px;
}
    .sidebarj {
        width: 100%; /* Full width for sidebar */
        box-shadow: none; /* Remove shadow for simplicity */
    }

    .main-contentj {
        width: 100%; /* Full width for main content */
    }

    

    .tab-buttonj {
        margin-right: 0; /* Remove right margin */
        margin-bottom: 5px; /* Add bottom margin */
    }
}
