		body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f5f5f5;
            color: #333;
        }
        
        a {
        
        	color: #ffffff;
            text-decoration:none;
            font-weight:bold;
        
        }
        
        a:visited {
        
        	color: #ffffff;
        }
        
        .head {
        
     	 position:relative;
       	 max-width:100%;
         height:120px;
         position:relative;
         background-color:#9ddfe0;
         border-radius: 10px;
         box-shadow: 0 0 10px rgba(0,0,0,0.1);
         padding:20px;
         margin-bottom:10px;
         background-image: url('banner.png');
         background-repeat: no-repeat;
         background-size:800px;
         background-position: right;
        
        }
        
        .menu_btn {
        	display:inline-block;
        	padding:10px;
        	color: #ffffff;
        	font-weight:bold;
        	background-color:#003e6d;
        	border-radius:10px;

        }
        
        .boton-paypal {
        
        	background-color:transparent;
        
        }
        
        .user-nav {
        	
        	text-align:center;
        
        }
        
        .container {
            max-width: 2000px;
            margin: 0 auto;
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        h1 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 30px;
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .art-item {
            background-color: white;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            position: relative;
        }
        .art-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .art-title {
            font-weight: bold;
            margin-bottom: 10px;
            text-align: center;
            color: #2c3e50;
        }
        .art-canvas {
            width: 100%;
            height: auto;
            background-color: #f0f0f0;
            margin: 0 auto;
            display: block;
        }
        .art-info {
            margin-top: 10px;
            font-size: 12px;
            color: #7f8c8d;
            text-align: center;
        }
        
        .reduction-info {
    		font-size: 0.8em;
  		  color: #666;
 		   margin-top: 5px;
  		  text-align: center;
		}
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }
        .pagination button {
            padding: 8px 15px;
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .pagination button:hover {
            background-color: #2980b9;
        }
        .pagination button:disabled {
            background-color: #bdc3c7;
            cursor: not-allowed;
        }
        .loading {
            text-align: center;
            padding: 20px;
            font-style: italic;
            color: #7f8c8d;
        }
        .search-container {
            margin-bottom: 20px;
            display: flex;
            gap: 10px;
        }
        #searchInput {
            flex-grow: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        #searchButton {
            padding: 10px 20px;
            background-color: #2ecc71;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        #searchButton:hover {
            background-color: #27ae60;
        }
        .no-results {
            text-align: center;
            padding: 40px;
            color: #7f8c8d;
            font-style: italic;
            grid-column: 1 / -1;
        }
        .view-options {
            text-align: center;
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .view-options button {
            padding: 8px 15px;
            background-color: #9b59b6;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .view-options button.active {
            background-color: #8e44ad;
        }
        .sort-options {
            margin-bottom: 20px;
            text-align: center;
        }
        .sort-options select {
            padding: 8px 15px;
            border-radius: 4px;
            border: 1px solid #ddd;
        }
        .art-actions {
            display: flex;
            justify-content: center;
            margin-top: 10px;
            gap: 10px;
        }
        .like-btn {
            background-color: #e74c3c;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 5px 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: background-color 0.3s;
        }
        .like-btn:hover {
            background-color: #c0392b;
        }
        .like-btn.liked {
            background-color: #27ae60;
        }
        .like-count {
            font-weight: bold;
        }
        .share-btn {
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 5px 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: background-color 0.3s;
        }
        .share-btn:hover {
            background-color: #2980b9;
        }
        .share-options {
            position: absolute;
            bottom: 60px;
            right: 15px;
            background: white;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            padding: 10px;
            display: none;
            z-index: 10;
        }
        .share-options a {
            display: block;
            padding: 5px 10px;
            color: #333;
            text-decoration: none;
            white-space: nowrap;
        }
        .share-options a:hover {
            background-color: #f5f5f5;
        }
        .art-item:hover .share-options {
            display: block;
        }