/* Profile Section Styles */
.flat-spacing-10 {
    padding: 60px 0;
}

.tf-profile-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.tf-profile-sidebar:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.profile-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.profile-avatar {
    margin-bottom: 20px;
    position: relative;
}

.profile-avatar img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f5f5f5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.profile-avatar img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.profile-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    text-transform: capitalize;
}

.profile-email {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.profile-menu {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.profile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-menu li {
    margin-bottom: 10px;
}

.profile-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.profile-menu li a:hover,
.profile-menu li.active a {
    background: #f8f9fa;
    color: #333;
    transform: translateX(5px);
}

.profile-menu li a i {
    margin-right: 10px;
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
}

.profile-menu li a:hover i,
.profile-menu li.active a i {
    color: #333;
}

.tf-profile-content {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.tf-profile-content:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #333;
}

/* Form Styles */
.tf-field.style-1 {
    position: relative;
    margin-bottom: 15px;
}

.tf-field.style-1 .tf-field-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.tf-field.style-1 .tf-field-input:focus {
    border-color: #333;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

.tf-field.style-1 .tf-field-label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
    margin: 0;
}

.tf-field.style-1 .tf-field-input:focus + .tf-field-label,
.tf-field.style-1 .tf-field-input:not(:placeholder-shown) + .tf-field-label {
    top: 0;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    color: #333;
}

.tf-field.style-1 select.tf-field-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8.825L1.175 4 2.05 3.125 6 7.075 9.95 3.125 10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* Button Styles */
.tf-btn.btn-fill {
    background: #333;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tf-btn.btn-fill:hover {
    background: #444;
    transform: translateY(-2px);
}

/* Alert Styles */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .flat-spacing-10 {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .flat-spacing-10 {
        padding: 30px 0;
    }
    
    .tf-profile-content {
        padding: 20px;
    }
    
    .profile-avatar img {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 20px;
    }
    
    .tf-field.style-1 .tf-field-input {
        padding: 10px 12px;
    }
} 