.tools-list-title {
    font-size: 24px;
    margin-top: 8px;
}

/* v2 */
.button-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
	margin-top: 16px;
}

.decoder-button {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
    padding: 25px 20px;
    width: 180px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
a.decoder-button:hover {
	text-decoration: none;
}

body.dark-theme .decoder-button {
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border: 1px solid #4a5568;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.decoder-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-color: #667eea;
}

.decoder-button:active {
    transform: translateY(-2px);
}

.button-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;    
}
body.dark-theme .button-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.button-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 6px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
body.dark-theme .button-title {
    color: #e2e8f0;
}

.button-subtitle {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}
body.dark-theme .button-subtitle {
    color: #a0aec0;
}

/* Специфические стили для каждой кнопки */
body.dark-theme .json-button:hover {
    border-color: #667eea;
}

body.dark-theme .url-button:hover {
    border-color: #764ba2;
}

body.dark-theme .sdmeta-button:hover {
    border-color: #e74c3c;
}

/* Цвета иконок для темной темы */
.json-icon path {
    stroke: #667eea;
}

.url-icon circle,
.url-icon path,
.url-icon rect {
    fill: #764ba2;
    stroke: #764ba2;
}

.sdmeta-icon {
	stroke: transparent;
	fill: transparent;
}
.sdmeta-icon circle,
.sdmeta-icon path {
    stroke: #e74c3c;
}
.sdmeta-icon .cls-1, .cls-2 {
    fill: none;
    stroke: #353535;
    stroke-width: 2px;
  }
  .sdmeta-icon .cls-1 {
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .sdmeta-icon .cls-2 {
    stroke-miterlimit: 10;
  }
  
.serialize-icon path {
    stroke: #1abc9c;
}  
.sdpromt-icon path,
.sdpromt-icon rect{
	
	fill: #e67e22;
}

  @media screen and (max-width: 480px) {
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    .decoder-button {
        width: 100%;
    }
  }