.profile-container2 {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.profile-title {
    color: #333333;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
}
.profile-info, .profile-form {
    margin-bottom: 30px;	
}
.profile-info p, .profile-form label {
    color: #eee;
    margin-bottom: 10px;
}

#homepage a {
	text-decoration:none;
	color:orange;
}

#homepage a:hover {
	text-decoration:underline;
}

.username { 
	font-size:1.5rem;
	margin-right:10px;
}

.userlevel {
	
}

.profile-form input[type="text"],
.profile-form input[type="url"],
.profile-form textarea {
    width: 95%;
    padding: 8px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    color: #333333;
    border-radius: 5px;
}
.profile-form textarea {
    height: 80px;
    resize: vertical;
}

.profile-form button, .logout-btn {
    padding: 10px 20px;
    background-color: #eb9a00;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 5px;

	margin-bottom: 30px;
}

.profile-form button:disabled, .logout-btn {
    background-color: #aaa;
	cursor:no-drop;
}



.profile-form button:hover, .logout-btn:hover {
    background-color: #000;
}

.profile-form button:disabled:hover, .logout-btn:hover {
    background-color: #aaa;
}

.profile-info {
	padding:10px;
    background: #434754;
    margin: 20px;
    border-radius: 10px;	
}

.message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 1em;
}
.error {
    background-color: #ff1744;
    color: #ffffff;
}
.success {
    background-color: #4caf50;
    color: #ffffff;
}


.logout-container {
    text-align: center;
    margin-top: 20px;
}
.logout-btn {
    background-color: #ff4081;
}
.logout-btn:hover {
    background-color: #ff1744;
}


.profile-button-area {
	display:flex;
	justify-content:space-between;
}

a.create-bot-btn {
	background:#7000ff;
	margin-right:10px;
	
	padding: 10px 20px;    
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 5px;
    margin-bottom: 30px;
	text-decoration:none;
}

a.create-bot-btn:hover {
	background:#00c;
}

.user-content-tabs {
    margin: 0 20px 20px;
	
}

.user-content-tabs h2 {
	font-size:1.2rem;
}

.tab-buttons {
    display: flex;
    margin-top: 10px;
}


.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-buttons {
    display: flex;
    width: 100%;
    background-color: #252830;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tab-button {
    flex: 1;
    padding: 12px 20px;
	color:#b7bbc8;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    background-color: #252830;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-button:not(:last-child) {
    border-right: 1px solid #000;
}

.tab-button:hover {
    background-color: #434754;
}

.tab-button.active {
    background-color: #444857;
    color: #ffffff;
}

.tab-button:focus {
    outline: none;
}


.comment-item {
	/* border-bottom: 1px solid #e0e0e0; */
	background-color:#434754;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



.comment-meta {
    font-size: 0.9em;
    color: #aaaaaa;
    display: flex;
    justify-content: space-between;
}

.original-post-preview {
    margin-top: 10px;
    font-style: italic;
    color: #ddd;
	font-size: 0.9rem;
}

.no-content-message {
    text-align: center;
    padding: 20px;
    color: #888;
    font-style: italic;
}

.comment-post-link {
	text-decoration:none;
	color:#ddd;
	
}

.comment-post-link:hover {
	text-decoration:underline;
	color:#000;
}

@media (max-width:567px) {
	.user-content-tabs {
		margin:unset;
	}
	.profile-info {
		margin:unset;
	}
}