.top-profile-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.edit-profile-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #57cdc9;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.edit-profile-button:hover {
    background-color: #77e6e2;
    transform: scale(1.1);
    color: #ffffff;
}

.tabs-wrapper {
    padding: 20px;
    background: #0d1e3b; /* Dark container (adjust color if needed) */
	/*border: 1px solid #ddd;*/
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
	margin-bottom: 8px;
}

.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Center content inside each tab */
.tab-content-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 6px;
    color: #f0f0f0;
}

.tabs-wrapper h2, .tabs-wrapper h3, .tabs-wrapper h4 {
    color: #e0de69 !important;
	text-align: left;
}

/* Align buttons */
.edit-profile-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.edit-profile-cancel-button,
.edit-profile-save-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.edit-profile-cancel-button {
    background: #ccc;
    color: #000;
	border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
	cursor: pointer;
}

.edit-profile-save-button {
    background: #57cdc9;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
	cursor: pointer;
}

.tab-content-inner {
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 8px;
    text-align: center;
    color: #f0f0f0;
}

.tab-content-inner ul {
    list-style-type: none;
	max-width: 50%;
	padding-left: 0;
	margin: 0 auto;
	text-align: left;
}

.tab-content-inner form p {
    margin-bottom: 16px;
}

.tab-content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 12px;
}

.tab-content-inner label {
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
	text-align: left;
	margin: 0 auto;
}

.tab-content-inner input {
	background:#bbb;
}

.tab-content-inner input[type="file"],
.tab-content-inner input[type="submit"] {
	width:200px;
    display: block;
    margin: 0 auto;
}

.button-primary {
    padding: 10px 20px !important;
    background: #57cdc9 !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: background 0.3s, transform 0.3s !important;
    cursor: pointer !important;
	border-style: none !important;
}

.button-primary li, .button-primary a {
    text-decoration: none !important;
}

.edit-avatar-img {
    width: 150px !important;
    height: 150px !important;
    border-radius: 50% !important;
    margin-bottom: 10px;
	border: 1px solid white;
}

.tab-nav { list-style: none; display: grid | inline-grid; gap: 10px; margin: 0 0 10px 0; padding: 0; }
.tab-nav li.active { background: #04AA6D !important; }

.tab-nav li {
    text-align: center;
    padding: 10px 20px;
    background: #57cdc9;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
	cursor: pointer;
}

.edit-info-section {
    width: 100%;
    padding: 20px;
    background: #2a2a2a;
    /*border: 1px solid #ddd;*/
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
}