html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

*, :after, :before {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  margin-block-end: 1rem;
  margin-block-start: .5rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-block-end: .9rem;
  margin-block-start: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
  white-space: pre-wrap;
}

a {
  background-color: transparent;
  color: #c36;
  text-decoration: none;
}

a:active, a:hover {
  color: #336;
}

a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

abbr[title] {
  border-block-end: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
  height: auto;
  max-width: 100%;
}

details {
  display: block;
}

summary {
  display: list-item;
}

figcaption {
  color: #333;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
}

[hidden], template {
  display: none;
}

@media print {
  *, :after, :before {
    background: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
    text-shadow: none !important;
  }
  
  a, a:visited {
    text-decoration: underline;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
  
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  
  a[href^="#"]:after, a[href^="javascript:"]:after {
    content: "";
  }
  
  pre {
    white-space: pre-wrap !important;
  }
  
  blockquote, pre {
    -moz-column-break-inside: avoid;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
  
  thead {
    display: table-header-group;
  }
  
  img, tr {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }
  
  h2, h3, p {
    orphans: 3;
    widows: 3;
  }
  
  h2, h3 {
    -moz-column-break-after: avoid;
    break-after: avoid;
  }
}
.button-container {
            display: flex;
            gap: 10px;
			float:right;
			margin-right:15px;
        }
        
.sign-up-button {
       border: 1px solid rgba(255,255,255,0.3);
color: white;
padding: 6px 12px;
border-radius: 6px;
cursor: pointer;
font-size: 16px;
z-index: 1003;
backdrop-filter: blur(10px);
transform: translateY(-50%);
background: rgba(255,255,255,0.3);
        }
        
.sign-in-button {
       border: 1px solid rgba(255,255,255,0.3);
color: white;
padding: 6px 12px;
border-radius: 6px;
cursor: pointer;
font-size: 16px;
z-index: 1003;
backdrop-filter: blur(10px);
transform: translateY(-50%);
background: rgba(255,255,255,0.3);
        }
        
        .sign-up-button:hover {
            background-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-2px);
			color:#FFFFFF;
        }
        
        .sign-in-button:hover {
            background-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-2px);
			color:#FFFFFF;
        }
        
        .button-label {
            text-align: center;
            color: white;
            margin-top: 10px;
            font-size: 12px;
        }


.user-menu {
    position: relative;
    display: inline-block;
}

.user-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
}

.user-menu:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
    background: #f5f5f5;
}

.dropdown-content a:last-child {
    border-bottom: none;
    color: #e74c3c;
}

#ai-greeting {
    font-size: 28px; 
    color: #fff; 
    text-align: center; 
    padding: 20px; 
    font-style: italic;
    margin: 20px 0; 
    border-radius: 8px; 
    align-items: center; 
    justify-content: center;
    animation: textGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
	max-width: 90%;
margin: 0 auto;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.7);
    }
}

.typing-cursor {
    animation: blink 1s infinite, cursorColor 2s infinite alternate;
}
@keyframes cursorColor {
    0% { color: #ff6b6b; }
    50% { color: #4ecdc4; }
    100% { color: #45b7d1; }
}
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
.homepage-chat {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
}

.chat-input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.chat-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #007cba;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.chat-button {
    padding: 12px 15px;
background: #fff;
color: #a2a2a2;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

.chat-button:hover {
	border: 1px #FFFFFF solid;
	padding: 12px 15px;
	background:none;
	border-radius: 30px;
}

.chat-response {
    min-height: 60px;
    padding: 15px;
    border-radius: 10px;
    background: #f9f9f9;
    border-left: 3px solid #28a745;
}

.homepage-input {
    border-radius: 30px;
    padding: .5rem 1rem;
    transition: all .3s;
    width: 100%;
}
.eve-login-container {
	width: 100%;
    min-height: calc(100vh - 260px);
    background: url(https://www.eve-a.com/img/back1.jpg) no-repeat center;
    background-size: cover;
    padding: 30px;
    box-sizing: border-box;
	
	}
    .eve-login-form {
        max-width: 400px;
        margin: 0 auto;
    }
	.eve-login-formin {
	    background: rgba(255,255,255,0.3);
		border: 1px solid rgba(255,255,255,0.3);
		border-radius: 10px;
		backdrop-filter: blur(10px);
        padding: 20px;
		color:#FFFFFF;
		float:left;
		width:100%;
    }
	
.eve-registration-container {
	width:100%;
	float:left;
	background:url(https://www.eve-a.com/img/back1.jpg)
	no-repeat center; 
	background-size: cover;
	padding:30px;
	}
    .eve-registration-form {
	    background: rgba(255,255,255,0.3);
		border: 1px solid rgba(255,255,255,0.3);
		border-radius: 10px;
		backdrop-filter: blur(10px);
        max-width: 400px;
        margin: 0 auto;
        padding: 20px;
		color:#FFFFFF;
    }
	
	
    .form-group-inup {
        margin-bottom: 15px;
    }
    .form-group-inup label {
        display: block;
        margin-bottom: 4px;
		color:#FFFFFF;
    }
    .form-group-inup input {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    .submit-button-inup {
        width: 100%;
        padding: 10px;
        background: linear-gradient(135deg, #007cba, #00a8ff);
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
    .registration-error {
        background: #ffebee;
        color: #c62828;
        padding: 10px;
        border-radius: 4px;
        margin-bottom: 15px;
    }
    .registration-success {
        background: #e8f5e8;
        color: #2e7d32;
        padding: 10px;
        border-radius: 4px;
        margin-bottom: 15px;
    }
    .login-link {
        margin-top: 20px;
        text-align: center;
    }
	
.eve-cart-container {
	width: 100%;
    float: left;
	min-height: calc(100vh - 260px);
    background: url(https://www.eve-a.com/img/back1.jpg) no-repeat center;
    background-size: cover;
    padding: 30px;
    box-sizing: border-box;
	
	}
    .eve-cart-form {
        width: 70%;
        margin: 0 auto;
    }
	.eve-cart-formin {
	    background: rgba(255,255,255,0.3);
		border: 1px solid rgba(255,255,255,0.3);
		border-radius: 10px;
		backdrop-filter: blur(10px);
        padding: 20px;
		color:#FFFFFF;
		float:left;
		width:100%;
    }
	
	
	
	
.eve-remove-product {
color:#FFFFFF;
text-decoration:none;
font-size:18px;
font-weight: 600;
 
}
.eve-proceed-to-payment {
float:right;

}

.eve-account-container {
	width: 100%;
    float: left;
	min-height: calc(100vh - 260px);
    background: url(https://www.eve-a.com/img/back1.jpg) no-repeat center;
    background-size: cover;
    padding: 30px;
    box-sizing: border-box;
	
	}
    .eve-account-form {
        width: 80%;
        margin: 0 auto;
    }
	.eve-account-formin {
	    background: rgba(255,255,255,0.3);
		border: 1px solid rgba(255,255,255,0.3);
		border-radius: 10px;
		backdrop-filter: blur(10px);
        padding: 20px;
		color:#FFFFFF;
		float:left;
		width:100%;
    }

.eve-mobile-account-container {
	width: 100%;
    float: left;
	min-height: calc(100vh - 260px);
    background: url(https://www.eve-a.com/img/back1.jpg) no-repeat center;
    background-size: cover;
    box-sizing: border-box;
	
	}
    .eve-mobile-account-form {
        width: 100%;
        margin: 0 auto;
    }
	.eve-mobile-account-formin {
	    background: rgba(255,255,255,0.3);
		border: 1px solid rgba(255,255,255,0.3);
		border-radius: 10px;
		backdrop-filter: blur(10px);
        padding: 20px;
		color:#FFFFFF;
		float:left;
		width:100%;
    }


	.form-group-inup input,
.form-group-inup select,
.form-group-inup textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group-inup input:focus,
.form-group-inup select:focus,
.form-group-inup textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* account menu */
.eve-account-menu {
    width: 260px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.25);
    padding: 10px 0;
    position: sticky;
    top: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    float: left;
    margin-right: 30px;
}

.eve-account-menu:hover {
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.35);
}

/* Menu reset */
.eve-account-menu nav,
.eve-account-menu ul,
.eve-account-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}

/* Menu items */
.eve-account-menu li {
    position: relative;
    transition: all 0.3s ease;
}

.eve-account-menu li a {
    display: flex;
    align-items: center;
    padding: 16px 25px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    gap: 15px;
    border-left: 3px solid transparent;
}

.eve-account-menu .menu-icon {
    flex-shrink: 0;
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* Hover effects */
.eve-account-menu li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-left-color: #ffffff;
    padding-left: 28px;
}

.eve-account-menu li a:hover .menu-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Active link */
.eve-account-menu li.active a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
    border-left-color: #ffd700;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.eve-account-menu li.active a .menu-icon {
    opacity: 1;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

/* Click effect */
.eve-account-menu li a:active {
    transform: translateY(1px);
}

/* Separator lines */
.eve-account-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0) 100%);
}

/* Logout special style */
.eve-account-menu li.logout-item a {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.eve-account-menu li.logout-item a:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border-left-color: #ff6b6b;
}

/* Animations */
.eve-account-menu li.dashboard-item a:hover .menu-icon rect {
    animation: pulse 2s infinite;
}

.eve-account-menu li.downloads-item a:hover .menu-icon path:first-child {
    animation: downloadArrow 1s infinite;
}


.eve-mobile-account-menu {
    width: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.25);
    top: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    float: left;
}
.eve-mobile-account-menu:hover {
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.35);
}

/* Menu reset */
.eve-mobile-account-menu nav,
.eve-mobile-account-menu ul,
.eve-mobile-account-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}

/* Menu items */
.eve-mobile-account-menu li {
    position: relative;
    transition: all 0.3s ease;
}

.eve-mobile-account-menu li a {
    display: flex;
    align-items: center;
    padding: 16px 25px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    gap: 15px;
    border-left: 3px solid transparent;
}

.eve-mobile-account-menu .menu-icon {
    flex-shrink: 0;
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* Hover effects */
.eve-mobile-account-menu li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-left-color: #ffffff;
    padding-left: 28px;
}

.eve-mobile-account-menu li a:hover .menu-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Active link */
.eve-mobile-account-menu li.active a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
    border-left-color: #ffd700;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.eve-mobile-account-menu li.active a .menu-icon {
    opacity: 1;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

/* Click effect */
.eve-mobile-account-menu li a:active {
    transform: translateY(1px);
}

/* Separator lines */
.eve-mobile-account-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0) 100%);
}

/* Logout special style */
.eve-mobile-account-menu li.logout-item a {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.eve-mobile-account-menu li.logout-item a:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border-left-color: #ff6b6b;
}

/* Animations */
.eve-mobile-account-menu li.dashboard-item a:hover .menu-icon rect {
    animation: pulse 2s infinite;
}

.eve-mobile-account-menu li.downloads-item a:hover .menu-icon path:first-child {
    animation: downloadArrow 1s infinite;
}


@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes downloadArrow {
    0% { transform: translateY(0); }
    50% { transform: translateY(2px); }
    100% { transform: translateY(0); }
}

/* Active background */
.eve-account-menu li.active a {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
}
/* cart */
.eve-shop_table {
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin: 0 -1px 30px 0;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
}


.eve-cart {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


.eve-shop_table thead th {

    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 18px 12px;
    border: none;
    letter-spacing: 0.5px;
}


.eve-shop_table tbody tr {
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background-color 0.2s ease;
}




.eve-shop_table td {
    padding: 20px 12px;
    vertical-align: middle;
    border-top: 1px solid rgba(0,0,0,0.04);
    font-size: 15px;
}

.eve-shop_table td.product-name a {
    color: #FFFFFF;
    font-weight: 500;
}

.eve-shop_table td.product-price {
    color: #FFFFFF;
    font-weight: 600;
}


.eve-cart-empty {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.eve-cart-empty .empty-cart-icon {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 20px;
}

 /* account menu */
    
    .subscription-card {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
        border-radius: 15px;
        padding: 25px;
        color: white;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }
    
    .subscription-card h3 {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 24px;
        border-bottom: 2px solid rgba(255,255,255,0.2);
        padding-bottom: 10px;
    }

    
    .detail-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .detail-label {
        font-weight: 500;
        opacity: 0.9;
    }
    
    .detail-value {
        font-weight: 600;
    }
    

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.badge.basic {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #bbdefb;
}

.badge.pro {
    background: #f3e5f5;
    color: #7b1fa2;
    border: 1px solid #e1bee7;
}

.badge.business {
    background: #fff3e0;
    color: #ef6c00;
    border: 1px solid #ffe0b2;
}

.badge.enterprise {
background: rgba(23, 23, 23, 0.4);
color: #fff;
border: 1px solid rgba(255, 255, 255, 0.4);
}

.badge.agency {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.badge.lifetime {
    background: #fffde7;
    color: #f57f17;
    border: 1px solid #fff9c4;
}

.badge.custom {
    background: #f5f5f5;
    color: #424242;
    border: 1px solid #e0e0e0;
}
    
    .status-badge {
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 14px;
    }
    
    .status-active {
        background: rgba(46, 204, 113, 0.8);
        color: #FFFFFF;
        border: 1px solid rgba(46, 204, 113, 0.4);
    }
    
    .status-inactive {
        background: rgba(231, 76, 60, 0.2);
        color: #e74c3c;
        border: 1px solid rgba(231, 76, 60, 0.4);
    }
    
    .status-pending {
        background: rgba(241, 196, 15, 0.2);
        color: #f1c40f;
        border: 1px solid rgba(241, 196, 15, 0.4);
    }
    
    .days-left {
        color: #FFFFFF;
    }
    
    .days-left.warning {
        color: #f1c40f;
    }
    
    .days-left .expired {
        color: #e74c3c;
    }
    
    .progress-section {
        margin: 25px 0;
        padding: 20px;
        background: rgba(255,255,255,0.1);
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .progress-plan-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        font-size: 15px;
        opacity: 0.9;
    }
    
    .progress-bar {
        height: 8px;
        background: rgba(255,255,255,0.1);
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 5px;
    }
    
    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #2ecc71, #3498db);
        border-radius: 4px;
        transition: width 0.5s ease;
    }
    
    .progress-dates {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        opacity: 0.8;
    }
    
    .subscription-footer {
        margin-top: 20px;
    }
    
    .renewal-notice, .expired-notice {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 15px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .expired-notice {
        background: rgba(231, 76, 60, 0.1);
        border-color: rgba(231, 76, 60, 0.3);
    }
    
    .notice-icon {
        font-size: 18px;
    }
    
    .notice-text {
        flex: 1;

        font-weight: 500;
    }
    
    .renew-link {
        color: #2ecc71;
        text-decoration: none;
        font-weight: 600;
    }
    
    .renew-link:hover {
        text-decoration: underline;
    }
    
    .action-buttons {
        display: flex;
        gap: 10px;
    }
    
    .btn-renew, .btn-upgrade, .btn-renew-urgent {
        flex: 1;
        padding: 12px 20px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        text-decoration: none;
        display: block;
    }
    
    .btn-renew {
        background: linear-gradient(135deg, #43c0ff, #38aa94);
        color: white;
    }
    
    .btn-renew:hover {
        background: linear-gradient(135deg, #43c0ff, #9dddd1);
		color:#FFFFFF;
        transform: translateY(-2px);
    }
    
    .btn-upgrade {
        background: rgba(255,255,255,0.1);
        color: white;
        border: 1px solid rgba(255,255,255,0.3);
    }
    
    .btn-upgrade:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-2px);
		color:#FFFFFF;
    }
    
    .btn-renew-urgent {
        background: #e74c3c;
        color: white;
        font-weight: 600;
    }
    
    .btn-renew-urgent:hover {
        background: #c0392b;
        transform: translateY(-2px);
    }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	

.eve-client-settings-container {
    width: 100%;
    margin: 0 auto;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    float:left;
}


.eve-client-settings-sidebar {
  width: 280px;
  padding: 2rem 0;
  border-radius: 15px;
  border-right:1px solid rgba(255,255,255,0.3);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
  box-shadow: 10px 0 15px -5px rgba(0, 0, 0, 0.2);
}


#client-avatar-preview {
height: auto;
max-width: 100%;
border-radius: 50%;
}

#avatar-preview {
height: auto;
max-width: 100%;
border-radius: 50%;
}

.eve-client-settings-tabs {
    display: flex;
    flex-direction: column;
}
.eve-client-settings-tab-button {
    padding: 1.2rem 2rem;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    display: flex;
    align-items: center;
    gap: 12px;
	border-bottom: 1px solid color #FFFFFF;
}
.eve-client-settings-tab-button:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0) 100%);
}

.eve-client-settings-tab-button {
    position: relative;
}
.eve-client-settings-leftside {
background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
border-radius: 15px;
padding: 25px;
color: white;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
backdrop-filter: blur(10px);
float: left;
width: 100%;
}
.eve-client-settings-tab-button:hover {
    color: #ffffff;
background: rgba(255, 255, 255, 0.12);
border-left-color: #ffffff;
padding-left: 28px;
}
.eve-client-settings-tab-button.active {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    color: #ffffff;
background: rgba(255, 255, 255, 0.15);
font-weight: 600;
border-left-color: #ffd700;
box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}
.eve-client-settings-tab-button i {
    font-size: 1.3rem;
    width: 24px;
}
.eve-client-settings-content {
    flex: 1;
    padding: 2rem;
	padding-top:0px;

}
.eve-client-settings-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}
.eve-client-settings-tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.eve-client-settings-header {
    margin-bottom: 2.5rem;
}
.eve-client-settings-title {
    margin-top: 0;
margin-bottom: 20px;
font-size: 24px;
border-bottom: 2px solid rgba(255,255,255,0.2);
padding-bottom: 10px;
}
.eve-client-settings-subtitle {
    color: #ccc;
    font-size: 1.1rem;
}
.eve-client-settings-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.eve-client-avatar-section {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
background: rgba(255,255,255,0.5);
backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-bottom: 1rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.eve-client-avatar-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    background: #f8fafc; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.eve-client-avatar-upload {
    flex: 1;
}
.eve-client-settings-form-group {
    margin-bottom: 1.5rem;
}
.eve-client-settings-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.eve-client-settings-input,
.eve-client-settings-select,
.eve-client-settings-textarea {
    width: 100%;
    padding:10px;
    background: #f8fafc;
    border-radius: 10px;
    color: #666666;
    font-size: 1rem;
    transition: all 0.3s ease;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border:none;
}

.eve-client-settings-textarea {
    min-height: 120px;
    resize: vertical;
}
.eve-client-settings-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}
.eve-client-settings-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px;
    background: #f8fafc; 
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	color:#666666;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eve-client-settings-checkbox {
    margin: 0;
}
.eve-client-slider-container {
    margin-top: 1rem;
}
.eve-client-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #c4c4c4;
    outline: none;
    margin: 1rem 0;
    -webkit-appearance: none;
}
.eve-client-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4f46e5;
    cursor: pointer;
    border: 2px solid #fff;
}
.eve-client-slider-values {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 0.9rem;
}
.eve-client-settings-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}
.eve-client-settings-btn {
    padding: 0.5rem 1rem;
border: none;
border-radius: 5px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
background: linear-gradient(135deg, #007cba, #00a8ff);
color: white;
}

.eve-client-reset-btn {
    padding: 0.5rem 1rem;
border: none;
border-radius: 5px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
background: linear-gradient(135deg, #767777, #c1c6c8);
color: white;
}

.eve-client-settings-btn-secondary {
    background: #333;
    color: #ccc;
}
.eve-client-settings-btn-secondary:hover {
    background: #444;
    color: #fff;
}
.eve-client-settings-empty-tab {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}
.eve-client-settings-empty-tab i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}
.eve-assistant-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
}
.eve-avatar-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #3b82f6;
}
.eve-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eve-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    font-size: 20px;
}
.eve-name {
    font-weight: 600;
    color: #374151;
    font-size: 16px;
}

.eve-client-avatar-preview.uploading {
    opacity: 0.7;
    position: relative;
}
.eve-client-avatar-preview.uploading::after {
    content: 'Uploading...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

	.eve-mail-accounts-container {
    width:100%;
    float:left;
}
.eve-mail-accounts-left {
    width:100%;
    float:left;
}
.eve-mail-accounts-list {
    width:48%;
    margin-left:20px;
    float:left;
}
.eve-mail-accounts-form {
    background: rgba(255,255,255,0.3);
border: 1px solid rgba(255,255,255,0.3);
backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1.5rem;
}
.eve-mail-servers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.eve-mail-account-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.3);
border: 1px solid rgba(255,255,255,0.3);
backdrop-filter: blur(10px);
}
.eve-mail-account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.eve-mail-account-name {
    font-weight: bold;
    font-size: 1.1em;
}
.eve-mail-account-status.active {
    background: rgba(46, 204, 113, 0.8);
color: #FFFFFF;
border: 1px solid rgba(255, 255, 255, 0.4);
padding: 4px 12px;
border-radius: 20px;
font-size: 14px;
}
.eve-mail-account-status.inactive {
        background: rgba(253, 98, 37, 0.8);
color: #FFFFFF;
border: 1px solid rgba(255, 255, 255, 0.4);
padding: 4px 12px;
border-radius: 20px;
font-size: 14px;
}
.eve-mail-account-email {
    color: #fff;
    margin-bottom: 0.5rem;
}
.eve-mail-account-actions {
    display: flex;
    gap: 0.5rem;
}
.eve-client-settings-btn-small {
    padding: 0.5rem 1rem;
border: none;
border-radius: 5px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
background: linear-gradient(135deg, #007cba, #00a8ff);
color: white;
}
	
.client-account-info {
	width:100%;
	float:left;

}

.copy-btn {
    margin-left: 10px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #007cba, #00a8ff);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    min-width: 60px;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: #005a87;
}

.copy-btn.copied {
    background: linear-gradient(135deg, #28a745, #00a8ff);
}

.copy-btn.copied .btn-text:after {
    content: " ?";
}
.api-field {
width:50%;
float:left;
padding: 10px;
color:#FFFFFF;

	    background: rgba(255,255,255,0.3);
border: 1px solid rgba(255,255,255,0.3);
border-radius: 10px;
backdrop-filter: blur(10px);
}

.api-value {
    margin-top: 5px;
    padding: 10px;
	color:#333333;

    border-radius: 4px;
    font-family: monospace;
    word-break: break-all;
}
.api-value code {
background: #f4f4f4;
padding: 6px 10px;
border-radius: 17px;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
font-size: 0.9em;
}
	
	
/* MOBILE ONLY STYLES */
.mobile-eve-client-settings-container {
    width: 100%;
    margin: 0 auto;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    padding: 10px;
}

.mobile-eve-client-settings-tabs {
    display: block;
    width: 100%;
}

.mobile-eve-client-settings-tab-item {
    margin-bottom: 10px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.mobile-eve-client-settings-tab-button {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    color: white;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-tab-header {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.mobile-tab-header i {
    font-size: 1.3rem;
    min-width: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-tab-header span:first-of-type {
    flex-grow: 1;
    font-weight: 600;
    font-size: 16px;
}

.mobile-tab-arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
    color: #ffd700;
}

.mobile-eve-client-settings-tab-button.active {
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid #ffd700;
}

.mobile-eve-client-settings-tab-button.active .mobile-tab-arrow {
    transform: rotate(180deg);
}

.mobile-eve-client-settings-tab-content {
    display: none;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.3s ease;
}

/* Mobile form styles */
.mobile-eve-client-settings-tab-content .eve-client-settings-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-eve-client-settings-tab-content .eve-client-avatar-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.mobile-eve-client-settings-tab-content .eve-mail-accounts-container {
    flex-direction: column;
}

.mobile-eve-client-settings-tab-content .eve-mail-accounts-list {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
}

.mobile-eve-client-settings-tab-content .eve-mail-servers-grid {
    grid-template-columns: 1fr;
}

.mobile-eve-client-settings-tab-content .api-field {
    width: 100%;
    margin-bottom: 15px;
    margin-left: 0;
}

.mobile-eve-client-settings-tab-content .client-account-info {
    display: flex;
    flex-direction: column;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-eve-client-settings-tab-button {
        padding: 15px;
    }
    
    .mobile-tab-header {
        gap: 12px;
    }
    
    .mobile-tab-header span:first-of-type {
        font-size: 15px;
    }
    
    .mobile-eve-client-settings-tab-content {
        padding: 15px;
    }
}	

/* Main styles */


/* Column layout */


.col-1 {
    width: 100%;
}

/* Section headings */


/* Form container - 2 columns */
.woocommerce-billing-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Each form field container */
.form-row {
    display: flex;
    flex-direction: column;
}

/* First name and Last name side by side */
.form-row-first,
.form-row-last {
    width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
}

/* Country field - full width */
#billing_country_field {
    width: 49%;
}

/* Address line 1 - full width (moved up) */
#billing_address_1_field {
    width: 49%;
}

/* Address line 2 - hidden */
#billing_address_2_field {
    display: none !important;
}

/* City and postcode - side by side */
#billing_city_field,
#billing_postcode_field {
    width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
}

/* State field - full width */
#billing_state_field {
    width: 49%;
}

/* Phone and email - side by side */
#billing_phone_field,
#billing_email_field {
    width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
}

/* Labels */
.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.required {
    color: #e74c3c;
}

/* Input wrapper */
.woocommerce-input-wrapper {
    display: block;
    width: 100%;
}

/* Input fields */
.input-text,
.country_select,
.state_select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.input-text:focus,
.country_select:focus,
.state_select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* Order table */
.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.woocommerce-checkout-review-order-table thead {
    
    color: white;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-align: inherit;
}

.order-total {

    color: white;
}

.order-total th,
.order-total td {
    padding: 20px 15px;
    font-size: 1.2em;
}

/* Payment methods */
.wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.wc_payment_method {
    background: rgba(255,255,255,0.5);
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 15px;
}

.payment_box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.5) 100%);
    padding: 15px;
    border-radius: 4px;
    margin-top: 10px;
}


/* Mobile */
@media (max-width: 768px) {
    .form-row-first,
    .form-row-last,
    #billing_city_field,
    #billing_postcode_field,
    #billing_phone_field,
    #billing_email_field {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    .eve-cart-formin {
        padding: 15px;
    }
    
    .woocommerce-checkout-review-order-table {
        font-size: 14px;
    }
    
    .submit-button-inup {
        padding: 14px 24px;
        font-size: 16px;
    }
}