/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0ab28a 0%, #065f46 100%);
    min-height: 100vh;
    color: #333;
}

.hidden {
    display: none !important;
}

/* Loading Spinner */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    gap: 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0ab28a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.spinner::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid #065f46;
    animation: spin 2s linear infinite reverse;
}

.loading-text {
    color: #6b7280;
    font-weight: 600;
    font-size: 16px;
    animation: pulse 2s infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Authentication Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.auth-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    margin-bottom: 10px;
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.auth-header h1 {
    color: #1f2937;
    font-size: 24px;
    font-weight: 600;
}

.auth-form h2 {
    color: #1f2937;
    margin-bottom: 24px;
    text-align: center;
    font-size: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 16px;
}

.input-group input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #0ab28a;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #0ab28a, #059669);
    color: white;
    width: 100%;
    margin-bottom: 16px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 178, 138, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
    width: 100%;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4b5563, #374151);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.3);
}

.btn-outline {
    background: transparent;
    color: #0ab28a;
    border: 2px solid #0ab28a;
}

.btn-outline:hover {
    background: #0ab28a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 178, 138, 0.3);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    width: auto;
    margin-bottom: 0;
}

.auth-switch {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.auth-switch a {
    color: #0ab28a;
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Main Application Layout */
#main-app {
    min-height: 100vh;
    background: #f8fafc;
    display: grid;
    grid-template-areas: 
        "header header"
        "sidebar main";
    grid-template-rows: 60px 1fr;
    grid-template-columns: 280px 1fr;
}

/* Responsive Layout */
@media (max-width: 768px) {
    #main-app {
        grid-template-areas: 
            "header"
            "main";
        grid-template-rows: 60px 1fr;
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block !important;
    }
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
}

/* Header */
.header {
    grid-area: header;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-small {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.header h1 {
    color: #1f2937;
    font-size: 20px;
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-info {
    color: #6b7280;
    font-size: 14px;
}

/* Sidebar */
.sidebar {
    grid-area: sidebar;
    background: white;
    border-right: 1px solid #e5e7eb;
    padding: 24px;
    overflow-y: auto;
}

.nav-section h3 {
    color: #1f2937;
    font-size: 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.projects-list {
    margin-top: 16px;
}

.project-item {
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    border: 1px solid transparent;
    position: relative;
    background: #f9fafb;
}

.project-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #0ab28a, #059669);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.project-item:hover {
    background: #f3f4f6;
    transform: translateX(4px);
    border-color: #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.project-item:hover::before {
    height: 60%;
}

.project-item.active {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: #0ab28a;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(10, 178, 138, 0.1);
}

.project-item.active::before {
    height: 80%;
}

.project-item-name {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
    font-size: 15px;
}

.project-item.active .project-item-name {
    color: #047857;
}

.project-item-stats {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-item-stats::before {
    content: '📁';
    font-size: 14px;
}

/* Main Content */
.main-content {
    grid-area: main;
    padding: 24px;
    overflow-y: auto;
}

.breadcrumb {
    margin-bottom: 16px;
    font-size: 14px;
    color: #6b7280;
}

.breadcrumb-item {
    display: inline;
    cursor: pointer;
}

.breadcrumb-item:hover {
    color: #0ab28a;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #d1d5db;
}

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

.content-header h2 {
    color: #1f2937;
    font-size: 24px;
    font-weight: 600;
}

.toolbar {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .toolbar {
        gap: 8px;
    }
    
    .toolbar .btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .toolbar .btn i {
        font-size: 12px;
    }
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 12px;
    color: #6b7280;
    font-size: 14px;
}

.search-box input {
    padding: 10px 12px 10px 36px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    width: 250px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.search-box input:focus {
    outline: none;
    border-color: #0ab28a;
    box-shadow: 0 0 0 3px rgba(10, 178, 138, 0.1);
    width: 300px;
}

@media (max-width: 768px) {
    .search-box input {
        width: 200px;
    }
    
    .search-box input:focus {
        width: 220px;
    }
}

.content-area {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    position: relative;
    transition: all 0.3s ease;
}

.welcome-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    text-align: center;
    color: #6b7280;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 16px;
    margin: 24px;
    border: 2px dashed #cbd5e1;
    transition: all 0.3s ease;
}

.welcome-message:hover {
    border-color: #0ab28a;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.welcome-message i {
    color: #0ab28a;
    margin-bottom: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.welcome-message:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.welcome-message h3 {
    color: #1f2937;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}

.welcome-message p {
    color: #6b7280;
    font-size: 16px;
    max-width: 400px;
    line-height: 1.6;
}

/* Drag and Drop Styles */
.content-area.drag-over {
    border: 3px dashed #0ab28a !important;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%) !important;
    box-shadow: 0 0 30px rgba(10, 178, 138, 0.2) !important;
}

.drop-zone {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px dashed transparent;
}

.drop-zone:hover {
    border-color: #0ab28a;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    transform: scale(1.02);
}

.upload-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 20px;
    background: rgba(10, 178, 138, 0.1);
    border-radius: 8px;
    color: #047857;
    font-size: 14px;
    font-weight: 500;
}

.upload-hint i {
    color: #0ab28a;
}

@media (max-width: 768px) {
    .upload-hint {
        font-size: 12px;
        padding: 10px 16px;
    }
    
    .upload-hint span {
        text-align: center;
    }
}

/* Drag Overlay */
.drag-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 178, 138, 0.95);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 100;
    animation: dragOverlayFadeIn 0.2s ease;
}

@keyframes dragOverlayFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.drag-overlay-content {
    text-align: center;
    color: white;
}

.drag-overlay-content i {
    color: white;
    margin-bottom: 16px;
    animation: bounce 1s infinite;
}

.drag-overlay-content h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
}

.drag-overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

/* File/Folder Grid */
.file-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 24px;
}

@media (max-width: 768px) {
    .file-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
        padding: 16px;
    }
}

.file-item, .folder-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.file-item:hover, .folder-item:hover {
    border-color: #0ab28a;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(10, 178, 138, 0.15);
}

.file-item::before, .folder-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ab28a, #059669);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.file-item:hover::before, .folder-item:hover::before {
    opacity: 1;
}

.file-icon, .folder-icon {
    font-size: 40px;
    margin-bottom: 12px;
    color: #0ab28a;
    transition: transform 0.3s ease;
}

.folder-icon {
    color: #f59e0b;
}

.file-item:hover .file-icon, .folder-item:hover .folder-icon {
    transform: scale(1.1);
}

.file-name, .folder-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
    word-break: break-word;
    font-size: 14px;
    line-height: 1.4;
}

.file-size, .folder-info {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

/* File Type Specific Colors */
.file-item[data-type="image"] .file-icon { color: #10b981; }
.file-item[data-type="video"] .file-icon { color: #f59e0b; }
.file-item[data-type="audio"] .file-icon { color: #8b5cf6; }
.file-item[data-type="pdf"] .file-icon { color: #ef4444; }
.file-item[data-type="document"] .file-icon { color: #3b82f6; }
.file-item[data-type="archive"] .file-icon { color: #6b7280; }

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    padding: 24px 28px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px 16px 0 0;
}

.modal-header h3 {
    color: #1f2937;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #374151;
    transform: scale(1.1);
}

.modal-body {
    padding: 28px;
}

/* Form Styling in Modals */
.modal .input-group {
    margin-bottom: 20px;
}

.modal .input-group input,
.modal .input-group textarea,
.modal .input-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.modal .input-group input:focus,
.modal .input-group textarea:focus,
.modal .input-group select:focus {
    outline: none;
    border-color: #0ab28a;
    background: white;
    box-shadow: 0 0 0 3px rgba(10, 178, 138, 0.1);
}

.modal .input-group textarea {
    resize: vertical;
    min-height: 80px;
}

.modal .form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.modal .form-control:focus {
    outline: none;
    border-color: #0ab28a;
    box-shadow: 0 0 0 3px rgba(10, 178, 138, 0.1);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    border-left: 4px solid #10b981;
    animation: slideIn 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.warning {
    border-left-color: #f59e0b;
}

.toast-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    color: #10b981;
}

.toast.error .toast-icon {
    color: #ef4444;
}

.toast.warning .toast-icon {
    color: #f59e0b;
}

.toast-message {
    font-weight: 500;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .toast {
        min-width: auto;
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #main-app {
        grid-template-areas: 
            "header"
            "main";
        grid-template-columns: 1fr;
        grid-template-rows: 60px 1fr;
    }
    
    .sidebar {
        display: none;
    }
    
    .content-header {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .toolbar {
        justify-content: center;
    }
    
    .search-box input {
        width: 200px;
    }
    
    .file-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
        padding: 16px;
    }
}

/* Duplicates Management Styles */
.duplicates-container {
    max-width: 800px;
    margin: 0 auto;
}

.duplicates-summary {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.duplicates-summary h4 {
    margin: 0 0 0.5rem 0;
    color: #495057;
}

.duplicates-summary p {
    margin: 0;
    color: #6c757d;
}

.duplicate-group {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.group-header {
    background: #3b82f6;
    color: white;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.group-stats {
    font-size: 0.875rem;
    opacity: 0.9;
}

.group-files {
    padding: 0;
}

.duplicate-file {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #dee2e6;
}

.duplicate-file:last-child {
    border-bottom: none;
}

.duplicate-file.keep-file {
    background: #d4edda;
}

.duplicate-file.remove-file {
    background: #f8d7da;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.file-info i {
    color: #6c757d;
    width: 16px;
}

.file-name {
    font-weight: 500;
    color: #212529;
}

.project-name {
    color: #6c757d;
    font-size: 0.875rem;
}

.upload-date {
    color: #6c757d;
    font-size: 0.875rem;
    margin-left: auto;
    margin-right: 1rem;
}

.file-actions {
    display: flex;
    align-items: center;
}

.keep-label {
    color: #155724;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-small {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.duplicates-actions {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.no-duplicates {
    text-align: center;
    padding: 2rem;
    color: #28a745;
}

.no-duplicates i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.no-duplicates p {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Team Share Modal Styles */
.team-share-container {
    max-width: 600px;
    margin: 0 auto;
}

.team-share-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #0ab28a;
}

.team-share-summary h4 {
    color: #0ab28a;
    margin-bottom: 10px;
}

.team-share-summary p {
    margin: 0;
    line-height: 1.6;
}

.team-share-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.team-share-form .form-group {
    margin-bottom: 20px;
}

.team-share-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.team-share-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    background: white;
}

.available-members {
    margin: 20px 0;
}

.available-members h5 {
    margin-bottom: 15px;
    color: #495057;
}

.members-list {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    background: #f8f9fa;
}

.member-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
    gap: 12px;
}

.member-item:last-child {
    border-bottom: none;
}

.member-item i {
    color: #6c757d;
    width: 16px;
}

.member-name {
    font-weight: 600;
    color: #212529;
    min-width: 120px;
}

.member-email {
    color: #6c757d;
    font-size: 13px;
}

.team-share-actions {
    margin-top: 20px;
    text-align: center;
}

.no-members {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0ab28a;
}

.no-members i {
    font-size: 3rem;
    color: #0ab28a;
    margin-bottom: 15px;
}

.no-members p {
    margin: 0;
    color: #495057;
    font-size: 16px;
}

.btn-success {
    background: linear-gradient(135deg, #0ab28a, #059669);
    border-color: #0ab28a;
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669, #047857);
    border-color: #047857;
    box-shadow: 0 8px 25px rgba(10, 178, 138, 0.3);
    transform: translateY(-2px);
}
