/* Modern dark theme user profile page styles */

body {
    background-color: #0f172a;
}

.second_color {
    background-color: #0f172a;
}

a:hover {
    text-decoration: none;
}

.orange {
    color: #14b8a6;
}

/* Avatar placeholder styling */
.avatar-placeholder {
    width: 251px;
    height: 251px;
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.avatar-placeholder-icon {
    font-size: 120px;
    color: rgba(20, 184, 166, 0.3);
}

/* Modern dark panels */
.list-group {
    margin-bottom: 20px;
}

.list-group-item {
    background-color: #1e293b;
    border: 1px solid #334155;
    color: #e2e8f0;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.list-group-item:first-child {
    border-radius: 8px 8px 0 0;
}

.list-group-item:last-child {
    border-radius: 0 0 8px 8px;
}

.list-group-item a {
    color: #14b8a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.list-group-item a:hover {
    color: #5eead4;
}

.list-group-item strong {
    color: #14b8a6;
}

.list-group-item i {
    margin-right: 8px;
}

.special {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 15px;
}

/* Modern panel styling */
.panel {
    border: none;
    background-color: #1e293b;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: 20px;
}

.panel-primary {
    border-color: transparent;
}

.panel-info {
    border-color: transparent;
}

.panel-primary > .panel-heading,
.panel-info > .panel-heading {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border: none;
    color: #ffffff;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
}

.panel-body {
    background-color: #1e293b;
    padding: 20px;
    color: #e2e8f0;
}

.panel-footer {
    background-color: #0f172a;
    border-top: 1px solid #334155;
    padding: 15px 20px;
}

/* Modern textarea and form controls */
.panel-body textarea {
    background-color: #0f172a;
    border: 2px solid #334155;
    color: #e2e8f0;
    padding: 12px 15px;
    border-radius: 8px;
    width: 100%;
    font-size: 15px;
    transition: all 0.3s ease;
}

.panel-body textarea:focus {
    border-color: #14b8a6;
    outline: none;
    background-color: #1e293b;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.panel-body textarea:disabled {
    background-color: #0f172a;
    color: #64748b;
    cursor: not-allowed;
}

/* Modern buttons */
.btn-success {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border: none;
    color: white;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-success:hover {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

.btn-default,
.btn-success.disabled,
.btn-default.disabled {
    background-color: #334155;
    border: none;
    color: #64748b;
}

/* Image styling */
.img-thumbnail {
    background-color: #1e293b;
    border: 2px solid #334155;
    border-radius: 12px;
    padding: 8px;
}

/* Star rating */
#star-rating {
    margin: 30px auto 10px auto;
    width: 120px;
}

.stars {
    text-align: center;
}

.star {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 2px;
}

.fullStar {
    background: url('/static/dslr/img/star-full.png') no-repeat center;
    background-size: contain;
}

/* Facebook icon */
#facebook {
    color: #4267B2;
}

.feedback_hr {
    margin: 8px 0;
    border-color: #334155;
}

/* Alert styling */
.alert-info {
    background-color: #0c4a6e;
    border: 1px solid #0284c7;
    color: #bae6fd;
    border-radius: 8px;
    padding: 15px;
}

.alert-warning {
    background-color: #92400e;
    border: 1px solid #d97706;
    color: #fde68a;
    border-radius: 8px;
    padding: 15px;
}

.alert-danger {
    background-color: #991b1b;
    border: 1px solid #dc2626;
    color: #fecaca;
    border-radius: 8px;
    padding: 12px;
}

/* Label styling */
.label-danger {
    background-color: #dc2626;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    #star-rating {
        width: 90px;
    }

    .list-group-item {
        font-size: 14px;
        padding: 10px 12px;
    }

    .special {
        font-size: 16px;
    }

    .panel-body {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    #star-rating {
        width: 80px;
        font-size: 12px;
    }

    .special {
        font-size: 14px;
        padding: 12px;
    }

    .img-thumbnail {
        margin-bottom: 15px;
    }

    .list-group-item {
        font-size: 13px;
        padding: 8px 10px;
    }
}

