* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.agent-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.header {
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.main-agent-selection {
    margin-bottom: 20px;
}

.agent-info {
    margin-bottom: 20px;
}

.agent-info img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

.agent-info p {
    margin-top: 10px;
}

.agent-info #agentName {
    font-size: 1.8em;
    font-weight: bold;
}

.agent-info #agentRole {
    font-size: 1.2em;
    color: #b3b3b3;
}

.agent-info #agentDescription {
    font-size: 1em;
    margin-top: 10px;
}

.agents {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.agent {
    background-color: #444;
    border: none;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.agent img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.agent p {
    margin-top: 5px;
    font-weight: bold;
}

.agent:hover {
    background-color: #666;
}

.selected {
    border: 3px solid #00ff00;
}

.lock-in {
    background-color: #00fff2;
    color: #000000;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    cursor: pointer;
    width: 100%;
}

.lock-in:disabled {
    color: #FFFFFF;
    background-color: #350085;
}

@media (max-width: 768px) {
    .agents {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-agent-selection {
        display: none;
    }
}

@media (max-width: 480px) {
    .agents {
        grid-template-columns: repeat(2, 1fr);
    }

    .agent-info {
        display: none;
    }
}
