.auto-comment-div {
    background-color: #f2dede;
    border-color: #ebccd1;
    border-radius: 4px;
    padding: 15px;
    margin-top: 10px;
}

.update-div {
    background-color: #33cad5;
    border-color: #33cad5;
    border-radius: 4px;
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wiki-link {

    color: var(--noble-color);

    font-weight: bold;
    text-decoration: none;


}

.copyArtDiv {

    display: flex;
    margin-top: 10px;
    justify-content: center;
    gap: 10px;
}

.order-button {

    display: block;
    width: 100%;
    padding: 4px;
    background-color: var(--noble-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 10px;
}

.additionalArtsDiv {
    margin-top: 10px;
    font-size: 14px;
}

.suppliersSummaryDiv {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    font-size: 14px;
}

.our_ware {

    color: #ff7518;

}

.our_ware_green {

    background-color: #DFF0D8;
    vertical-align: top;
}

.suppliers_summary {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    text-align: left;

}

.alternative-arts-div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    font-size: 14px;
}

.admin_search_container {
    display: flex;
    max-width: 400px;
    height: 40px;
}

.admin_search_input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.admin_search_input:focus {
    border-color: #dc0000;
}

.admin_search_button {
    width: 40px;
    background-color: #dc0000;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin_search_button:hover {
    background-color: #7a0d0d;
}

.admin_search_icon {
    fill: white;
}

.original_art-div{

    margin-top: 10px;
    margin-bottom: 10px;
}

.admin_button{

    color: #333;
    background-color: #fff;
    border-color: #ccc;
    border-radius: 3px;

    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;

    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
   
}



.login-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

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

.login-header h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.login-header p {
    color: #666;
    font-size: 14px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

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

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.error {
    background: #ff6b6b;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.demo-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
    font-size: 12px;
    color: #666;
}

.demo-info strong {
    color: #333;
}


.header_admin {
    background: #ddd;
    color: #333;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_admin h1 {
    font-size: 24px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-info a{
    color: var(--noble-color);
    font-weight: bold;
}

.user-name {
    font-weight: bold;
}

.logout-btn {
    background: rgba(255, 255, 255, 0.2);
    
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.container_admin {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.welcome-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.welcome-card h2 {
    color: #333;
    margin-bottom: 15px;
}

.welcome-card p {
    color: #666;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

.quick-actions {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quick-actions h3 {
    color: #333;
    margin-bottom: 20px;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.action-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
}

/* nav{

    display: none;
} */

.popular-products-div{

    display: flex;
    gap: 10px;

    margin-bottom: 10px;
    
}


.orderButtonDiv a{

    margin-top: 10px;
}

.admin_popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.admin_popup_container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    max-width: 80%;
    max-height: 80vh;
    overflow-y: auto;
    min-width: 300px;
    width: auto;
    box-sizing: border-box;
}

.admin_popup_close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
}

.admin_popup_content {
    margin-top: 20px;
}