.create-project-modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center;z-index:10000;animation:fadeIn .2s ease-in-out}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.create-project-modal{background:var(--light);border-radius:12px;width:90%;max-width:500px;max-height:90vh;overflow:hidden;display:flex;flex-direction:column;box-shadow:0 10px 40px rgba(0,0,0,.2);animation:slideUp .3s ease-out}.create-project-modal .modal-header{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;border-bottom:1px solid var(--border-light)}.create-project-modal .modal-header h2{margin:0;font-size:1.25rem;font-weight:600;color:var(--foreground)}.create-project-modal .modal-header .close-button{background:none;border:none;padding:4px;cursor:pointer;color:var(--foreground-subtle);display:flex;align-items:center;justify-content:center;border-radius:6px;transition:all .2s}.create-project-modal .modal-header .close-button:hover:not(:disabled){background-color:rgba(var(--foreground-rgb),.1);color:var(--foreground)}.create-project-modal .modal-header .close-button:disabled{opacity:.5;cursor:not-allowed}.create-project-modal .modal-form{padding:24px;overflow-y:auto;flex:1 1}.create-project-modal .modal-form .error-message{display:flex;align-items:center;gap:8px;padding:12px;background-color:rgba(var(--error-rgb),.1);border:1px solid rgba(var(--error-rgb),.3);border-radius:8px;color:var(--error);font-size:.875rem;margin-bottom:20px}.create-project-modal .modal-form .error-message svg{flex-shrink:0}.create-project-modal .modal-form .form-group{margin-bottom:20px}.create-project-modal .modal-form .form-group label{display:block;font-size:.875rem;font-weight:500;color:var(--foreground);margin-bottom:8px}.create-project-modal .modal-form .form-group label .required{color:var(--error);margin-left:2px}.create-project-modal .modal-form .form-group input,.create-project-modal .modal-form .form-group select{width:100%;padding:10px 12px;border:1px solid var(--border-light);border-radius:8px;font-size:.9375rem;background-color:var(--light);color:var(--foreground);transition:all .2s}.create-project-modal .modal-form .form-group input:focus,.create-project-modal .modal-form .form-group select:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(var(--primary-rgb),.1)}.create-project-modal .modal-form .form-group input:disabled,.create-project-modal .modal-form .form-group select:disabled{opacity:.6;cursor:not-allowed}.create-project-modal .modal-form .form-group input::placeholder,.create-project-modal .modal-form .form-group select::placeholder{color:var(--foreground-subtle)}.create-project-modal .modal-form .form-group select{cursor:pointer}.create-project-modal .modal-form .modal-actions{display:flex;gap:12px;margin-top:24px;padding-top:20px;border-top:1px solid var(--border-light)}.create-project-modal .modal-form .modal-actions button{flex:1 1;padding:10px 20px;border-radius:8px;font-size:.9375rem;font-weight:500;cursor:pointer;transition:all .2s;border:none}.create-project-modal .modal-form .modal-actions button:disabled{opacity:.6;cursor:not-allowed}.create-project-modal .modal-form .modal-actions .cancel-button{background-color:rgba(var(--foreground-rgb),.05);color:var(--foreground);border:1px solid var(--border-light)}.create-project-modal .modal-form .modal-actions .cancel-button:hover:not(:disabled){background-color:rgba(var(--foreground-rgb),.1)}.create-project-modal .modal-form .modal-actions .submit-button{background-color:var(--primary);color:var(--background-subtle)}.create-project-modal .modal-form .modal-actions .submit-button:hover:not(:disabled){background-color:rgba(var(--primary-rgb),.9);transform:translateY(-1px);box-shadow:0 4px 12px rgba(var(--primary-rgb),.3)}@keyframes slideUp{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}@media(max-width:768px){.create-project-modal{width:95%;max-height:85vh}.create-project-modal .modal-header{padding:16px 20px}.create-project-modal .modal-header h2{font-size:1.125rem}.create-project-modal .modal-form{padding:20px}.create-project-modal .modal-form .form-group{margin-bottom:16px}.create-project-modal .modal-form .modal-actions{flex-direction:column}.create-project-modal .modal-form .modal-actions button{width:100%}}.user-profile-container{position:relative;width:100%;margin-bottom:1rem}.user-profile-container .user-profile-row{display:flex;align-items:center;gap:.45rem}.user-profile-container .user-profile-button{display:flex;align-items:center;gap:.75rem;width:100%;flex:1 1;padding:.75rem;border:none;border-radius:8px;background:rgba(0,0,0,0);color:var(--foreground);cursor:pointer;transition:all .3s ease;position:relative}.user-profile-container .user-profile-button:hover{background:rgba(var(--primary-rgb),.1)}.user-profile-container .user-profile-button .notification-badge{position:absolute;top:.25rem;right:.25rem;width:1.25rem;height:1.25rem;background-color:var(--error);color:var(--background-subtle);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.7rem;box-shadow:0 2px 4px rgba(0,0,0,.2);animation:pulse 2s infinite}.user-profile-container .user-profile-button .user-avatar{width:36px;height:36px;border-radius:50%;object-fit:cover;border:2px solid rgba(var(--primary-rgb),.3)}.user-profile-container .user-profile-button .user-avatar-placeholder{width:36px;height:33.6px;border-radius:50%;background:linear-gradient(45deg,rgba(var(--primary-rgb),.5),rgba(var(--secondary-rgb),.5));display:flex;align-items:center;justify-content:center;color:var(--background-subtle);font-size:18px;font-weight:600;border:2px solid rgba(var(--primary-rgb),.3)}.user-profile-container .user-profile-button .user-info{display:flex;flex-direction:column;align-items:flex-start;overflow:hidden;flex:1 1}.user-profile-container .user-profile-button .user-info .user-name{font-size:.9rem;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:150px}.user-profile-container .user-profile-button .user-info .user-role{font-size:.75rem;color:var(--foreground-subtle)}.user-profile-container .user-profile-tutorial-action{display:flex;align-items:center;justify-content:center;flex-shrink:0}.user-profile-container .nav-tooltip{position:absolute;left:70px;background:var(--background);color:var(--foreground);padding:.5rem .75rem;border-radius:.375rem;font-size:.875rem;white-space:nowrap;box-shadow:0 4px 12px rgba(0,0,0,.1);pointer-events:none;z-index:10;border:1px solid var(--border-light);opacity:1;transform:translateY(-50%)}@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}[data-theme=dark] .user-profile-container .user-profile-button:hover{background:rgba(var(--primary-rgb),.15)}[data-theme=dark] .user-profile-container .nav-tooltip{background:var(--background-dark);border-color:var(--border-dark);box-shadow:0 4px 12px rgba(0,0,0,.3)}[dir=rtl] .user-profile-container .nav-tooltip{left:auto;right:70px}.notification-badge-container{position:relative;display:inline-flex;align-items:center;justify-content:center}.notification-badge{position:absolute;top:-8px;right:-8px;background:linear-gradient(45deg,var(--primary),var(--secondary));color:var(--background-subtle);border-radius:50%;min-width:16px;height:16px;font-size:10px;font-weight:700;display:flex;align-items:center;justify-content:center;padding:1px 4px;z-index:10;box-shadow:0 1px 3px rgba(0,0,0,.2);transition:opacity .2s ease,transform .2s ease}.notification-badge.hidden{opacity:0;transform:scale(0);pointer-events:none}.notification-badge.visible{opacity:1;transform:scale(1)}.notification-badge.has-text{min-width:18px;height:18px;font-size:9px}@media(max-width:768px){.notification-badge{top:-6px;right:-6px;min-width:14px;height:14px;font-size:9px}}