/* Avatar Crop Modal Styles */
.f3-crop-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.f3-crop-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.f3-crop-modal-content {
    background-color: #2a2a2a;
    margin: auto;
    padding: 15px;
    border: 1px solid #555;
    border-radius: 8px;
    width: 90%;
    max-width: 550px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.f3-crop-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #555;
}

.f3-crop-modal-header .f3-crop-modal-actions {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    order: 1;
}

.f3-crop-modal-header .f3-crop-modal-close {
    order: 2;
}

.f3-crop-modal-title {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.f3-crop-modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.f3-crop-modal-close:hover,
.f3-crop-modal-close:focus {
    color: #fff;
}

.f3-crop-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
}

.f3-crop-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.f3-crop-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.f3-crop-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.f3-crop-btn-primary {
    background-color: #4CAF50;
    color: white;
}

.f3-crop-btn-primary:hover {
    background-color: #45a049;
}

.f3-crop-btn-secondary {
    background-color: #666;
    color: white;
}

.f3-crop-btn-secondary:hover {
    background-color: #777;
}

.f3-crop-preview {
    margin-top: 20px;
    text-align: center;
}

.f3-crop-preview-label {
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.f3-crop-preview img {
    max-width: 200px;
    max-height: 200px;
    border: 2px solid #555;
    border-radius: 4px;
}



