.profile-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.profile-section {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-section h2 {
    margin-top: 0;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
}

.btn-update {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-update:hover {
    background-color: var(--primary-dark);
}

.success-message {
    color: green;
    background-color: #e8f5e9;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    display: none;
}

.error-message {
    color: red;
    background-color: #ffebee;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    display: none;
}

.rooms-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.room-card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.room-code {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.room-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.room-actions a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
}

.no-rooms {
    text-align: center;
    padding: 20px;
    color: var(--text-secondary);
}

/* Pro Features Section Styling */
.pro-features {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pro-features p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.features-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.features-list li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-info {
    margin-top: 15px;
    font-weight: 500;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 5px;
    transition: color 0.2s ease;
}

.linkedin-link:hover {
    color: var(--accent-color);
}

.linkedin-link i {
    margin-right: 8px;
}